Hi, I'm trying to change the background color of the RadzenNumeric (to begin with) since gray is not well distinguished on iPhones.
I have tried to use chrome's html inspection in order to locate the class and override the css.
so I'm trying to override the css with:
.rz-spinner.rz-state-disabled {
background-color: blue
}
but I don't get the expected result.
I have tried to do the same thing on Radzen textbox inspected like
and applying
.rz-textbox.rz-state-disabled{
background-color:red
}
And here if obtained the correct result.
But I can't figure out what I'm doing wrong with the Radzen Numeric.
Greetings and thanks for your work.