Some fixups to the CSS output of showCSS()

This commit is contained in:
Zach Copley 2009-06-15 22:39:53 -07:00
parent 4652f316cf
commit f3199c1369
1 changed files with 3 additions and 3 deletions

View File

@ -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");
}