我正在使用'@material-ui/core:^4.12.3'和使用Textfield组件。
我有一个文本字段:
编辑后,文本字段背景颜色从白色更改为#E8F0FE:
如何防止编辑字段后更改颜色?任何建议对我来说都很有意义!
我的文本字段:
<TextField
{...field}
value={displayValue ?? field.value}
onChange={handleChange}
label={label}
placeholder={isFocused ? placeholder : undefined}
error={invalid}
helperText={invalid && error}
disabled={disabled}
onFocus={handleFocus}
onBlur={handleBlur}
multiline={multiline}
InputProps={{
classes: {
input: className
},
disableUnderline: disableUnderline,
inputComponent: inputComponent
}}
InputLabelProps={{
shrink: true,
style: {
fontSize: '15px',
...labelStyle
},
classes: {
shrink: classes.inputLabel
}
}}
inputProps={{
'aria-label': label
}}
FormHelperTextProps={{
style: {
...helperTextStyle
}
}}
{...rest}
/>
非常感谢!
1条答案
按热度按时间z0qdvdin1#
你必须使用makeStyles来覆盖它的默认CSS样式。
我写了这个代码。
在TextField被聚焦后,我已经应用了红色边框,你可以在那里添加更多的CSS,并可以根据你的要求改变它。
你可以试试这段代码,如果有任何问题,请告诉我。