Ah that will be the reason. Um they won't necessarily make fixes for that per say. Yes they can explicitly set the text to be black by but there no reason to, it is not invalid not to.
In your Firefox profile /chrome directory try putting the following in userContent.css
Code:
input[type="text"], textarea {
color: black /* or red or any color */ !important;
}
If a site has explicitly set input styling say in div it will not mess up their styling. You are only changing the input styling. There is not styling there to mess up! Input styling so rare especially the colour (guaranteed to wind people up). If a site has explicitly set input styling say with and id it will NOT mess up their styling. It is pretty likely there will use an id because css3 is still not taken hold completely. You can even drop the !important part. Seriously userContent.css is pretty useful check it:
http://cssing.blogspot.com/2004/08/my-o ... weaks.htmlhttp://www.gozer.org/mozilla/ad_blocking/google...
Nobody should have to put up with things they really don’t want.
If you only want this to be applied to WP (I don’t why when it is so useful), you can do this:
Code:
@-moz-document domain(wrongplanet.net){
input[type="text"], textarea {
color: black /* or red or any color */ !important;
}
}