From b086b4f517fd2e4bac1ae0ff1530e40cd64dcc71 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Fri, 21 May 2021 11:25:53 +0900 Subject: [PATCH] Add: Container Tab - Color Bottom Line at None Sound Tab --- userChrome.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/userChrome.css b/userChrome.css index a1ba220..bf32b27 100644 --- a/userChrome.css +++ b/userChrome.css @@ -261,6 +261,20 @@ } /* None exist favicon */ + .tabbrowser-tab:not([image]):not([pinned], [sharing], [crashed]):not([soundplaying], [muted], [activemedia-blocked]) .tab-content::before { + /* Box Model */ + content: ''; + display: block; + position: absolute !important; + transition: 0.2s !important; + transform: translateY(10px) !important; + + /* Shape */ + border-bottom: 2px solid var(--identity-icon-color); + width: 16px; + } + + /* None exist favicon - With Sound */ .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing], [crashed]):is([soundplaying], [muted], [activemedia-blocked]) { box-sizing: content-box; padding: 3px 0;