summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/farbtastic/farbtastic.go.js4
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});