Quote:
Originally Posted by wikked
i think i may be looking for the same solution...
the boxes (as attached) start out white until you click them which makes them black, but as soon as you click on the next box, the first box goes back to white and you cant see the text.
Been thru styleVars but its doing my head in
superb skin and happy with everything but that.
what do i need to change??
|
I was annoyed by this as well. But, I fixed it on my end.
Styles & Templates -> Style Manager -> DarkVision -> Edit Templates -> CSS Templates -> editor.css
The fourth set of styles listed should be:
input.textbox:focus {
/* REMOVE UPDATE */
color:#eeeeee;
background:#25292c;
background-color:#25292c;
/* REMOVE UPDATE */
}
The REMOVE UPDATE stuff may or may not be there, it's on mine, and I don't know why. But anyway, you'll just be adding another item so it will then look like this:
input.textbox:focus, input.textbox {
/* REMOVE UPDATE */
color:#eeeeee;
background:#25292c;
background-color:#25292c;
/* REMOVE UPDATE */
}
Best as I can tell, the CSS file never tells it what to do with the top level input textboxes that are NOT in use. So it uses the default.
Edit: I haven't tested this across the whole site yet, but so far on my end it fixes the Search bar on the front page, it fixes the title bars when posting replies in Advanced and it fixes all the boxes when editing profiles. If you find others that it doesn't fix, let me know. Or I will also if I find them, and will tell you what to do to fix it.