Force color for input text to be #000 on #eee,
instead of relying on default foreground color. Thanks to pehjota for this comment: <pehjota> bkuhn: In vote.css for "input[type=text]", you might want to set "color" in addition to "background-color". Otherwise, with my dark GTK+ theme, I see white text in a light gray box, which is hard to read. :)
This commit is contained in:
parent
89126c6b38
commit
6973681c5c
1 changed files with 1 additions and 0 deletions
|
@ -18,6 +18,7 @@ input[type=text] {
|
|||
border-style: solid;
|
||||
border-width: 1px;
|
||||
background-color: #eee;
|
||||
color: #000;
|
||||
margin: 0.1em 0 0.1em 0;
|
||||
padding-left: 0.2em;
|
||||
padding-right: 0.2em;
|
||||
|
|
Loading…
Reference in a new issue