main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
762 bytes
|
Line | |
---|
1 | import { Theme } from '@mui/material/styles';
|
---|
2 | import { sliderClasses } from '@mui/material/Slider';
|
---|
3 |
|
---|
4 | // ----------------------------------------------------------------------
|
---|
5 |
|
---|
6 | export function slider(theme: Theme) {
|
---|
7 | const lightMode = theme.palette.mode === 'light';
|
---|
8 |
|
---|
9 | return {
|
---|
10 | MuiSlider: {
|
---|
11 | styleOverrides: {
|
---|
12 | root: {
|
---|
13 | [`&.${sliderClasses.disabled}`]: {
|
---|
14 | color: theme.palette.action.disabled,
|
---|
15 | },
|
---|
16 | },
|
---|
17 | rail: {
|
---|
18 | opacity: 0.32,
|
---|
19 | },
|
---|
20 | markLabel: {
|
---|
21 | fontSize: 13,
|
---|
22 | color: theme.palette.text.disabled,
|
---|
23 | },
|
---|
24 | valueLabel: {
|
---|
25 | borderRadius: 8,
|
---|
26 | backgroundColor: theme.palette.grey[lightMode ? 800 : 700],
|
---|
27 | },
|
---|
28 | },
|
---|
29 | },
|
---|
30 | };
|
---|
31 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.