In MUI 5 Autocomplete I need to override disabled options style to display them in a solid color, not with opacity.
I tried this:
'& .MuiAutocomplete-option[aria-disabled="true"]': {
color: 'red',
opacity: 1
}
but the component ignores completely these styles. How can I achieve this?
This is the sandbox.