我正在尝试select
从 Material-UI更改组件的边框。到目前为止,我已经尝试过:
const styles = theme => ({
root: {
display: "flex",
flexWrap: "wrap",
backgroundColor: "lightgrey"
},
formControl: {
margin: theme.spacing.unit,
minWidth: 120
},
selectEmpty: {
marginTop: theme.spacing.unit * 2
},
cssLabel: {
color: "pink",
"&$cssFocused": {
color: "pink"
}
},
cssFocused: {
color: "pink"
},
underline: {
"&:after": {
borderBottom: "1px solid pink",
borderTop: "1px solid pink"
}
}
});
我可以自定义TextField
等,但经过很多小时后,我仍然无法自定义选择。我也尝试通过Input
,但是您必须自定义Input
,这更糟。
有人可以帮我处理这个沙箱吗?
https://codesandbox.io/s/material-demo-ecj1k
我真的很感激。