diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-06-15 22:43:06 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-06-15 22:43:06 -0700 |
commit | 37cafad2e071bbfe8a733bba22fb68bbf5220051 (patch) | |
tree | d3859806cdb56c1a295062e7b1950ec304fca051 | |
parent | f3199c1369bb017d5e1548343a0fd56bededb69b (diff) |
Another minor tweak to showCSS() CSS output
-rw-r--r-- | classes/Design.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/Design.php b/classes/Design.php index f4128ee39..8bb527761 100644 --- a/classes/Design.php +++ b/classes/Design.php @@ -66,7 +66,8 @@ class Design extends Memcached_DataObject $out->element('style', array('type' => 'text/css'), 'html, body { background-color: #' . $bgcolor->hexValue() . '} '."\n". - '#content { background-color: #' . $ccolor->hexValue() . '} '."\n". + '#content, #site_nav_local_views .current a { background-color: #' . + $ccolor->hexValue() . '} '."\n". '#aside_primary { background-color: #'. $sbcolor->hexValue() .'} '."\n". 'html body { color: #'. $tcolor->hexValue() .'} '."\n". 'a { color: #' . $lcolor->hexValue() . '} '."\n"); |