From 810e7b3355071d945131378251d152c4643535dd Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Fri, 29 Jan 2010 20:13:55 +0000 Subject: [PATCH] Set background: white for Chick It was setting only color: black, so text was illegible if you had a dark background set by default. We could remove the color: rule too, but that might mess up other things that assume dark-on-light, and doesn't match what other skins do. Reported by Dispenser on IRC. --- skins/chick/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/skins/chick/main.css b/skins/chick/main.css index f471257b11..da76f4fe69 100644 --- a/skins/chick/main.css +++ b/skins/chick/main.css @@ -9,6 +9,7 @@ body { font-family: sans-serif; color: black; + background: white; margin: 0; padding: 0.3em; } -- 2.20.1