Open carljbowman opened 6 years ago
I have the same type of issue with Firefox on Linux, using the Arc Dark GTK theme:
I ended up writing a generic userstyle to deal with this (since other sites also get their inputs messed up like that):
input, textarea {
background: white;
color: #222;
}
input::placeholder {
color: #999;
}
Noticed this during bug hunt, using Safari.
Someone speculated that it may be related to the css problems that contribute to Safari's stack glow issue: https://github.com/LLK/scratch-blocks/issues/1188
For just the aspect of this issue which is text inputs on mobile Safari, it might be enough to make the .input-form
style have a backgrount-color: white
and add a .input-form::placeholder
style with color hsla(225, 15%, 40%, 1)
When this issue is triaged, I suggest we label this issue help wanted
, not for the full CSS audit that Carl described, but just for the coloring/shading of text inputs on mobile Safari.
Lots of browsers (e.g. Safari on iPad) add addtional default styles to field elements.
We should audit and evaluate including some CSS overrides into the base field component, such that these addtional styles are overridden.