From 66c4ee7e9a4ae922a05326254b60b9f5272a4eb4 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Thu, 10 Nov 2022 10:54:21 +0900 Subject: [PATCH] Fix: AutoHide - Tab opacity with unload tab --- css/leptonChrome.css | 2 +- src/tab/_unload_tab.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/leptonChrome.css b/css/leptonChrome.css index 9647c1dc..32126657 100644 --- a/css/leptonChrome.css +++ b/css/leptonChrome.css @@ -6861,7 +6861,7 @@ } /*= Unloaded Tab - Contents Opacity ===========================================*/ @supports -moz-bool-pref("userChrome.tab.unloaded") { - #tabbrowser-tabs .tabbrowser-tab[pending] .tab-content { + .tabbrowser-tab[pending] .tab-content { opacity: 0.7; } } diff --git a/src/tab/_unload_tab.scss b/src/tab/_unload_tab.scss index 8b918f20..fbf55412 100644 --- a/src/tab/_unload_tab.scss +++ b/src/tab/_unload_tab.scss @@ -1,3 +1,3 @@ -#tabbrowser-tabs .tabbrowser-tab[pending] .tab-content { +.tabbrowser-tab[pending] .tab-content { opacity: 0.7; }