From c02855f3f4db241017314e433119a21c413a5cd6 Mon Sep 17 00:00:00 2001 From: Matthew Cheely Date: Tue, 29 Dec 2015 16:57:44 -0500 Subject: [PATCH] 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. --- css/skeleton.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/skeleton.css b/css/skeleton.css index f28bf6c..64d8832 100644 --- a/css/skeleton.css +++ b/css/skeleton.css @@ -236,6 +236,7 @@ textarea, select { height: 38px; padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ + color: #222; background-color: #fff; border: 1px solid #D1D1D1; border-radius: 4px;