Fix partial selected checkbox style in dark
This commit is contained in:
parent
1695540947
commit
10a671da46
1 changed files with 2 additions and 2 deletions
|
@ -37,11 +37,11 @@ const styles = (theme: Theme) =>
|
|||
checkboxPartialSelect: {
|
||||
"& input": {
|
||||
"&:before": {
|
||||
background: [theme.palette.common.white, "!important"] as any,
|
||||
background: [theme.palette.background.paper, "!important"] as any,
|
||||
border: `solid 1px ${theme.palette.primary.main}`,
|
||||
content: "''"
|
||||
},
|
||||
background: theme.palette.common.white
|
||||
background: theme.palette.background.paper
|
||||
},
|
||||
"&:after": {
|
||||
background: theme.palette.primary.main,
|
||||
|
|
Loading…
Reference in a new issue