Reputation: 79
I am trying to change background color of disabled text-box, but mobile version looks a bit odd, any idea what property is doing that color? See first image, I would like to have result on mobile version as is showing on second image.
this is how it looks like on mobile version:
And here is how it looks like on desctop version: code:
input[disabled] {
color: #439d8e;
font-family: Roboto;
background: white;
}
Upvotes: 0
Views: 782
Reputation: 330
Something like this worked for me in the past:
.item {
-webkit-text-fill-color: white;
-webkit-opacity: 1;
background: white;
}
Upvotes: 1