diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-26 13:15:15 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-26 13:15:15 +0200 |
commit | 98c6548d64e620e20dcf6e9ff0b4a5a1f40556cb (patch) | |
tree | 373e797b18c8b057bdf7b4c4a08326fb53a77e8d /view/js | |
parent | d169ee658ebe449470430aa84f0a9771b7556618 (diff) | |
download | volse-hubzilla-98c6548d64e620e20dcf6e9ff0b4a5a1f40556cb.tar.gz volse-hubzilla-98c6548d64e620e20dcf6e9ff0b4a5a1f40556cb.tar.bz2 volse-hubzilla-98c6548d64e620e20dcf6e9ff0b4a5a1f40556cb.zip |
fix and cleanup custom theme settings
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/main.js b/view/js/main.js index 150f517a9..38b9754a1 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -369,10 +369,10 @@ function NavUpdate() { updateCountsOnly = false; if(data.network || data.home || data.intros || data.mail || data.all_events || data.notify) { - $('#notifications-btn').removeClass('text-muted').addClass('text-white'); + $('#notifications-btn').css('opacity', 1); } else { - $('#notifications-btn').removeClass('text-white').addClass('text-muted'); + $('#notifications-btn').css('opacity', 0.5); $('#navbar-collapse-1').removeClass('in'); } |