diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-06-16 00:57:38 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-06-16 00:57:38 -0700 |
commit | 2ccf43d65682134433d6f420e1bb41d16b4b8e4c (patch) | |
tree | 83c5add18d471e5df469d8966593d8a7ab383c4d /js/farbtastic/farbtastic.go.js | |
parent | 6d5d0b3472038b0a2cbe86c7df5f062853164dec (diff) | |
parent | 93205cac099e143b7e5dd22a17f6eda6a82d49cf (diff) |
Merge branch 'userdesign' of ssh://zach@dev.controlyourself.ca/mnt/www/design into userdesign
* 'userdesign' of ssh://zach@dev.controlyourself.ca/mnt/www/design:
Connects html, body and content, navigation background colors
Diffstat (limited to 'js/farbtastic/farbtastic.go.js')
-rw-r--r-- | js/farbtastic/farbtastic.go.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/farbtastic/farbtastic.go.js b/js/farbtastic/farbtastic.go.js index 2f202ced1..9bf740825 100644 --- a/js/farbtastic/farbtastic.go.js +++ b/js/farbtastic/farbtastic.go.js @@ -11,10 +11,10 @@ $(document).ready(function() { C = $(S).val(); switch (parseInt(S.id.slice(-1))) { case 1: default: - $('body').css({'background-color':C}); + $('html, body').css({'background-color':C}); break; case 2: - $('#content').css({'background-color':C}); + $('#content, #site_nav_local_views .current a').css({'background-color':C}); break; case 3: $('#aside_primary').css({'background-color':C}); |