1 | import { Theme, alpha } from '@mui/material/styles';
|
---|
2 | import { SwitchProps, switchClasses } from '@mui/material/Switch';
|
---|
3 |
|
---|
4 | // ----------------------------------------------------------------------
|
---|
5 |
|
---|
6 | export function switches(theme: Theme) {
|
---|
7 | const lightMode = theme.palette.mode === 'light';
|
---|
8 |
|
---|
9 | const rootStyles = (ownerState: SwitchProps) => ({
|
---|
10 | padding: '9px 13px 9px 12px',
|
---|
11 | width: 58,
|
---|
12 | height: 38,
|
---|
13 | ...(ownerState.size === 'small' && {
|
---|
14 | padding: '4px 8px 4px 7px',
|
---|
15 | width: 40,
|
---|
16 | height: 24,
|
---|
17 | }),
|
---|
18 | [`& .${switchClasses.thumb}`]: {
|
---|
19 | width: 14,
|
---|
20 | height: 14,
|
---|
21 | boxShadow: 'none',
|
---|
22 | color: theme.palette.common.white,
|
---|
23 | ...(ownerState.size === 'small' && {
|
---|
24 | width: 10,
|
---|
25 | height: 10,
|
---|
26 | }),
|
---|
27 | },
|
---|
28 | [`& .${switchClasses.track}`]: {
|
---|
29 | opacity: 1,
|
---|
30 | borderRadius: 14,
|
---|
31 | backgroundColor: alpha(theme.palette.grey[500], 0.48),
|
---|
32 | },
|
---|
33 | [`& .${switchClasses.switchBase}`]: {
|
---|
34 | left: 3,
|
---|
35 | padding: 12,
|
---|
36 | ...(ownerState.size === 'small' && {
|
---|
37 | padding: 7,
|
---|
38 | }),
|
---|
39 | [`&.${switchClasses.checked}`]: {
|
---|
40 | transform: 'translateX(13px)',
|
---|
41 | [`&+.${switchClasses.track}`]: {
|
---|
42 | opacity: 1,
|
---|
43 | },
|
---|
44 | ...(ownerState.size === 'small' && {
|
---|
45 | transform: 'translateX(9px)',
|
---|
46 | }),
|
---|
47 | },
|
---|
48 | [`&.${switchClasses.disabled}`]: {
|
---|
49 | [`& .${switchClasses.thumb}`]: {
|
---|
50 | opacity: lightMode ? 1 : 0.48,
|
---|
51 | },
|
---|
52 | [`&+.${switchClasses.track}`]: {
|
---|
53 | opacity: 0.48,
|
---|
54 | },
|
---|
55 | },
|
---|
56 | },
|
---|
57 | });
|
---|
58 |
|
---|
59 | return {
|
---|
60 | MuiSwitch: {
|
---|
61 | styleOverrides: {
|
---|
62 | root: ({ ownerState }: { ownerState: SwitchProps }) => rootStyles(ownerState),
|
---|
63 | },
|
---|
64 | },
|
---|
65 | };
|
---|
66 | }
|
---|