From 3c0ab476cdbefc76fc0a49584ea2c27b5dd3af1e Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Mon, 19 Jul 2021 13:40:15 +0900 Subject: [PATCH] Fix: Container Tab - Show indicator at busy #126 --- userChrome.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 2753d2b..4286196 100644 --- a/userChrome.css +++ b/userChrome.css @@ -650,7 +650,8 @@ border-bottom: 2px solid var(--identity-icon-color); } - /* None exist favicon */ + /* Busy, None exist favicon */ + .tabbrowser-tab[busy] .tab-content::before, .tabbrowser-tab:not([image]):not([pinned], [sharing], [crashed]):not([soundplaying], [muted], [activemedia-blocked]) .tab-content::before, .tabbrowser-tab[pinned][visuallyselected]:not([busy]):not(:hover) .tab-content::before { /* Box Model */ @@ -664,6 +665,7 @@ border-bottom: 2px solid var(--identity-icon-color); width: 16px; } + .tabbrowser-tab[busy] .tab-content::before, .tabbrowser-tab:not([image]):not([pinned], [sharing], [crashed]):not([soundplaying], [muted], [activemedia-blocked]) .tab-content::before { transform: translateY(10px) !important; /* None exist favicon */ }