mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
Fix readability of filter input field in dark mode
This commit is contained in:
parent
72fc0ef73e
commit
d2845605c2
@ -10,14 +10,21 @@ import TextField from '@material-ui/core/TextField';
|
||||
import { makeStyles, withStyles } from '@material-ui/core/styles';
|
||||
import ArrowDropDown from '@material-ui/icons/ArrowDropDown';
|
||||
|
||||
const CustomTextField = withStyles({
|
||||
const CustomTextField = withStyles((theme) => ({
|
||||
root: {
|
||||
margin: '0 8px 12px 8px',
|
||||
'& label.Mui-focused': {
|
||||
margin: '0 2px',
|
||||
color: theme.palette.text.secondary,
|
||||
},
|
||||
'& .MuiInput-underline::before': {
|
||||
borderBottomColor: theme.palette.divider,
|
||||
},
|
||||
'& .MuiInput-underline::after': {
|
||||
borderBottomColor: theme.palette.divider,
|
||||
},
|
||||
},
|
||||
})(TextField);
|
||||
}))(TextField);
|
||||
|
||||
const ITEM_HEIGHT = 48;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user