Add a foreground color for text inputs.

Some browser/platform combinations use system colors for inputs as the default. When the system is configured with a high-contrast light-on-dark theme, text inputs with a light background and no specified foreground color become difficult or impossible to read.
This commit is contained in:
Matthew Cheely 2015-12-29 16:57:44 -05:00
parent 88f03612b0
commit c02855f3f4

1
css/skeleton.css vendored
View File

@ -236,6 +236,7 @@ textarea,
select { select {
height: 38px; height: 38px;
padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
color: #222;
background-color: #fff; background-color: #fff;
border: 1px solid #D1D1D1; border: 1px solid #D1D1D1;
border-radius: 4px; border-radius: 4px;