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:
Bradley M. Kuhn 2014-02-10 17:47:11 -05:00
parent 89126c6b38
commit 6973681c5c

View file

@ -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;