From: Zach Copley Date: Tue, 16 Jun 2009 05:39:53 +0000 (-0700) Subject: Some fixups to the CSS output of showCSS() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f3199c1369bb017d5e1548343a0fd56bededb69b;p=quix0rs-gnu-social.git Some fixups to the CSS output of showCSS() --- diff --git a/classes/Design.php b/classes/Design.php index 9bfdcd1c35..f4128ee396 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"); }