diff --git a/css/leptonChrome.css b/css/leptonChrome.css index 67f7e5d..bf32cc0 100644 --- a/css/leptonChrome.css +++ b/css/leptonChrome.css @@ -6208,8 +6208,10 @@ /*= Sound Tab ================================================================*/ /*= Sound Tab - Hide Label ===================================================*/ @supports -moz-bool-pref("userChrome.tab.sound_hide_label") { - .tab-secondary-label:is([soundplaying], [muted], [activemedia-blocked], [pictureinpicture]) { - display: none !important; + @supports not -moz-bool-pref("userChrome.tab.sound_show_label") { + .tab-secondary-label:is([soundplaying], [muted], [activemedia-blocked], [pictureinpicture]) { + display: none !important; + } } } /*= Sound Tab - Show Label ===================================================*/ diff --git a/src/tab/_sound_tab.scss b/src/tab/_sound_tab.scss index 23ca831..6adad7b 100644 --- a/src/tab/_sound_tab.scss +++ b/src/tab/_sound_tab.scss @@ -1,6 +1,8 @@ /*= Sound Tab - Hide Label ===================================================*/ @include Option("userChrome.tab.sound_hide_label") { - @import "sound_tab/hide_label"; + @include NotOption("userChrome.tab.sound_show_label") { + @import "sound_tab/hide_label"; + } } /*= Sound Tab - Show Label ===================================================*/