From 229d08f5a3be52f2445abd1aa88a20d4999aa6bf Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Thu, 24 Nov 2022 09:16:18 +0900 Subject: [PATCH] Fix: Tab bar - connected pinned tab at nightly #513 --- css/leptonChrome.css | 4 ++++ src/tab/_connect_to_window.scss | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/css/leptonChrome.css b/css/leptonChrome.css index 376d2a3..89055bd 100644 --- a/css/leptonChrome.css +++ b/css/leptonChrome.css @@ -5665,6 +5665,10 @@ #tabbrowser-tabs[positionpinnedtabs] > #tabbrowser-arrowscrollbox > .tabbrowser-tab[pinned] { z-index: 0 !important; } + #tabbrowser-tabs[positionpinnedtabs] > #tabbrowser-arrowscrollbox > .tabbrowser-tab[pinned] .tab-stack { + /* Temporary solution for compatibility #513 */ + overflow-y: clip; + } } /*= Selected Tab =============================================================*/ /*= Selected Tab - Color like toolbar ========================================*/ diff --git a/src/tab/_connect_to_window.scss b/src/tab/_connect_to_window.scss index 11ffa74..4ffcfd1 100644 --- a/src/tab/_connect_to_window.scss +++ b/src/tab/_connect_to_window.scss @@ -23,4 +23,9 @@ /* Pinned Tab - tabbrowser-arrowscrollbox overflowing */ #tabbrowser-tabs[positionpinnedtabs] > #tabbrowser-arrowscrollbox > .tabbrowser-tab[pinned] { z-index: 0 !important; + + .tab-stack { + /* Temporary solution for compatibility #513 */ + overflow-y: clip; + } }