Is there a way to turn off the ripple effect or highlight color on the TextField
component in React's Material UI?
https://i.sstatic.net/qB2cm.png
I've attempted to modify the theme:
theme.props.MuiTab.disableRipple = true
theme.props.MuiButton.disableRipple = true
theme.props.MuiButtonBase.disableRipple = true
and also tried using custom CSS:
// disable Ripple Effect
.MuiTouchRipple-root {
display: none;
}
// disable FocusHighlight
.MuiCardActionArea-focusHighlight {
display: none;
}
After referring to suggestions from this issue: https://github.com/mui-org/material-ui/issues/240
Would appreciate guidance on how to eliminate the ripple effect when an input is focused?