问题描述
我正在构建一个具有materialui-tabs主题的React 16.13.0应用程序, https://material-ui.com/api/tab/.我已经在组件中创建了这些样式...
I'm building a React 16.13.0 application with the materialui-tabs theme, https://material-ui.com/api/tab/. I have created these styles in my component ...
const theme = createMuiTheme({
overrides: {
MuiTab: {
root: {
"&.MuiTab-root": {
backgroundColor: "black",
border: 0,
borderBottom: "2px solid",
"&:hover": {
border: 0,
borderBottom: "2px solid",
},
},
"&.Mui-selected": {
backgroundColor: "none",
borderBottom: "2px solid #373985",
borderColor: "#373985",
}
}
}
}
});
const useStyles = makeStyles((theme) => ({
root: {
width: "100%",
flexGrow: 1,
color: "#3739B5",
backgroundColor: "white",
},
viewButtons: {
marginTop: theme.spacing(2),
marginBottom: theme.spacing(1),
},
}));
这些适用于
<ThemeProvider theme={theme}>
<AppBar position="static">
<Tabs
classes={classes}
value={value}
variant="fullWidth"
centered
onChange={handleChange}
aria-label="volunteer dashboard tabs"
>
<Tab label={proposedLabel} {...a11yProps(2)} />
<Tab label={planningLabel} {...a11yProps(1)} />
<Tab label={inProgressLabel} {...a11yProps(0)} />
<Tab label={completedLabel} {...a11yProps(3)} />
</Tabs>
</AppBar>
</ThemeProvider>
我正在尝试更改所选标签的背景颜色.根据devtools进行检查,该类被列为
I'm trying to change the background color of the selected tab. Based on devtools, inspection, the class is listed as
.PrivateTabIndicator-colorSecondary-267 {
background-color: #f50057;
}
.PrivateTabIndicator-root-265 {
width: 100%;
bottom: 0;
height: 2px;
position: absolute;
transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
但是,尽管我已经在主题中列出了该颜色,但是尽管我在样式中指定了颜色,但该颜色还是显示为红色
However, despite the fact I have listed that in my theme, the color appears as red, despite what I specified in my style
如何覆盖所选标签的边框颜色?
How can I override the border color of the selected tab?
推荐答案
您可以尝试这种对我有用的解决方案吗?我假设您要覆盖底部边框指示器的颜色.
Can you try this solution working for me. I assume that you want to override the bottom border indicator color.
<Tabs value={0} TabIndicatorProps={{ style: { background: "#hex-color" } }}>
<Tab className={clasess.tab} label="Home" />
<Tab className={clasess.tab} label="Services" />
</Tabs>
这篇关于如何覆盖material-ui的标签选择颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!