gpt4 book ai didi

reactjs - 如何自定义material-ui TextField输入下划线:after?

转载 作者:行者123 更新时间:2023-12-03 14:11:27 31 4
gpt4 key购买 nike

我正在使用 Material-ui for React。

我正在尝试自定义当用户单击 Mui <TextField> 时过渡到位的下划线颜色。组件,这是jss注入(inject)以下CSS的结果:

.MuiInput-underline:after {
border-bottom: 2px solid #303f9f;
}

我已经投资了 styled-components 主题提供商,并且不想引入 MuiTheme 提供商来使用 createMuiThemeoverride .

我已经使用 styled-components 来覆盖许多其他 Mui 组件的样式,但无法覆盖 .MuiInput-underline:after使用样式化组件。

我现在尝试使用 Mui 的 withStyles,但不确定确切的样式语义。我使用 InputProps 和类都没有成功。

const styles = theme => ({
inputProps: {
underline: {
'&:after': {
border: '2px solid red'
}
}
}
});

const MyTextField = props => {
const { classes, ...rest } = props;

return (
<TextField InputProps={{ inputProps: classes.inputProps }} {...rest} />
);
};

export default withStyles(styles)(MyTextField);

有什么想法吗?谢谢。

最佳答案

以下是如何使用 styled-components 自定义下划线的示例:

import TextField from "@material-ui/core/TextField";
import styled from "styled-components";

const StyledTextField = styled(TextField)`
/* default */
.MuiInput-underline:before {
border-bottom: 2px solid green;
}
/* hover (double-ampersand needed for specificity reasons. */
&& .MuiInput-underline:hover:before {
border-bottom: 2px solid lightblue;
}
/* focused */
.MuiInput-underline:after {
border-bottom: 2px solid red;
}
`;

export default StyledTextField;

Edit TextField underline styled-components

相关答案:

关于reactjs - 如何自定义material-ui TextField输入下划线:after?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57602072/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com