I want to style differently TextFiled component , variant outlined once disabled={true}. The way it was catched in material ui v.4 don't work in material ui v.5. I cannot also google the solution how to customize disabled version. Below You can see how it was styled in material ui4 and it worked, not it does not.
export const MainTheme: Theme = createTheme({
components: {
MuiInputLabel: {
styleOverrides: {
root: {
fontSize: '13px',
'&$focused': {
borderColor: '#000',
},
'&$disabled': {
color: '#724a4a',
},
},
},
},
MuiInputBase: {
styleOverrides: {
root: {
'&$disabled': {
'& fieldset.MuiOutlinedInput-notchedOutline': {
borderColor: 'transparent',
background: 'rgb(0 0 0 / 4%)',
},
},
},
input: {
height: 'unset',
color: '#000000',
},
},
},
},
)}