【发布时间】:2020-11-03 20:45:40
【问题描述】:
我正在尝试在 React 中更改 ToggleButton 的颜色属性。
我想做类似的事情
<ToggleButton color='primary' />
ToggleButton API 当前不支持此选项。我发现的一种解决方法是覆盖 MuiToggleButton CSS 类。
const theme = createMuiTheme({
overrides: {
MuiToggleButton: {
root: {
color: 'rgba(50, 72, 86, 0.38)',
'&$selected': {
backgroundColor: 'rgba(50, 72, 86, 0.12)',
color: 'rgba(50, 72, 86, 1)',
'&:hover': {
backgroundColor: 'rgba(50, 72, 86, 0.15)',
},
},
},
},
},
}
此解决方案会覆盖所有 ToggleButton,因此在某些情况下可能会出现问题。
【问题讨论】:
-
我不清楚你的问题是什么。
标签: reactjs material-ui