diff options
author | Dan McGee <dan@archlinux.org> | 2010-07-05 22:33:38 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-07-05 22:33:38 -0500 |
commit | 845838190d16f93b791094d071d737539bd21573 (patch) | |
tree | b0ea6131a3c119865660267f7874c4f6dac616fd | |
parent | 85807311ca5545ea5e9d5a0170cf816269982348 (diff) |
Set font color for package search boxrelease_2010-07-05
Since we explicitly set a background color for this text input, we should
set a foreground font color as well so those with dark themes don't see
white text on a white background. Addresses FS#19290.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | media/archweb.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/archweb.css b/media/archweb.css index cb8be778..4458f4b3 100644 --- a/media/archweb.css +++ b/media/archweb.css @@ -114,7 +114,7 @@ ul.errorlist { color: red; } /* home: pkgsearch box */ #pkgsearch { padding: 1em 0.75em; background: #3ad; color: #fff; border: 1px solid #08b; } #pkgsearch p { margin: 0; padding: 0; font-weight: bold; text-align: right; } -#pkgsearch input { vertical-align: bottom; width: 12em; padding: 0.15em; font-size: 1em; background: #fff; border: 1px solid #09c; } +#pkgsearch input { vertical-align: bottom; width: 12em; padding: 0.15em; font-size: 1em; color: #000; background: #fff; border: 1px solid #09c; } /* home: recent pkg updates */ #pkg-updates h3 { margin: 0 0 0.3em; } |