Set background: white for Chick
authorAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 29 Jan 2010 20:13:55 +0000 (20:13 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 29 Jan 2010 20:13:55 +0000 (20:13 +0000)
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

index f471257..da76f4f 100644 (file)
@@ -9,6 +9,7 @@
 body {
     font-family: sans-serif;
     color: black;
+       background: white;
     margin: 0;
     padding: 0.3em;
 }