summaryrefslogtreecommitdiff
path: root/classes/Design.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-06-15 22:39:53 -0700
committerZach Copley <zach@controlyourself.ca>2009-06-15 22:39:53 -0700
commitf3199c1369bb017d5e1548343a0fd56bededb69b (patch)
tree4006397ccd23154b4ab5b296c8cc2da8191441b2 /classes/Design.php
parent4652f316cf9cb94fb5f0ae8003d7bb9e2bdcdaee (diff)
Some fixups to the CSS output of showCSS()
Diffstat (limited to 'classes/Design.php')
-rw-r--r--classes/Design.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/Design.php b/classes/Design.php
index 9bfdcd1c3..f4128ee39 100644
--- a/classes/Design.php
+++ b/classes/Design.php
@@ -65,9 +65,9 @@ class Design extends Memcached_DataObject
}
$out->element('style', array('type' => 'text/css'),
- 'body { background-color: #' . $bgcolor->hexValue() . '} '."\n".
- '#content { background-color #' . $ccolor->hexValue() . '} '."\n".
- '#aside_primary { background-color #'. $sbcolor->hexValue() .'} '."\n".
+ 'html, body { background-color: #' . $bgcolor->hexValue() . '} '."\n".
+ '#content { background-color: #' . $ccolor->hexValue() . '} '."\n".
+ '#aside_primary { background-color: #'. $sbcolor->hexValue() .'} '."\n".
'html body { color: #'. $tcolor->hexValue() .'} '."\n".
'a { color: #' . $lcolor->hexValue() . '} '."\n");
}