目前,我正在努力将MenuItem
选择的组件的背景颜色设置为不同的颜色。(无需使用 !important 强制它)
组件代码:
<MenuItem
classes={{
root: this.props.classes.root,
selected: this.props.classes.selected
}}
value={10}>
Alfabetical
</MenuItem>
这是CSS:
const homePageStyle = (theme) => ({
root: {
width: "300px"
},
selected: {
backgroundColor: "turquoise !important",
color: "white",
fontWeight: 600
}
});
我想达到什么目标?
我想设置backgroundColor
ofMenuItem
而不必设置 !important 标志。我已经用大量组件做到了这一点,但目前这似乎行不通。
我正在使用版本“@material-ui/core”:“^1.0.0-rc.0”,