diff options
author | Jan Lehnardt <jan@apache.org> | 2010-07-22 20:39:40 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2010-07-22 20:39:40 +0000 |
commit | e056188adedf711c08355ecfcec2064716538745 (patch) | |
tree | 5f8a8c02fd5b0b507f4ce0e649b19008742e2301 /share | |
parent | 1fa3780c53d56b5d583eae39cd027216e22e9f2e (diff) |
Futon: The CSS for dropdowns define a background (white) but no
foreground color. Therefore it breaks with dark themes.
Patch by Volker Mische.
Closes COUCHDB-820.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@966850 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r-- | share/www/style/layout.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/style/layout.css b/share/www/style/layout.css index a8abd491..4fff4980 100644 --- a/share/www/style/layout.css +++ b/share/www/style/layout.css @@ -55,7 +55,7 @@ code.null { color: #666; } button { font-size: 100%; -webkit-appearance: square-button; } button[disabled] { color: #999; } input, select, textarea { background: #fff; border: 1px solid; - border-color: #999 #ddd #ddd #999; margin: 0; padding: 1px; + border-color: #999 #ddd #ddd #999; color: #000; margin: 0; padding: 1px; } input.placeholder { color: #999; } textarea { |