From 05cb47107511bc98cc814c1f391275aa8298dad9 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Sun, 19 May 2024 03:34:10 +0900 Subject: [PATCH] Fix: Tabbar - Border top line at connected window #889 --- css/leptonChrome.css | 12 ++++++++++++ css/leptonChromeESR.css | 5 +++++ src/tab/_connect_to_window.scss | 6 ++++++ 3 files changed, 23 insertions(+) diff --git a/css/leptonChrome.css b/css/leptonChrome.css index 4c95fca1..2e613dde 100644 --- a/css/leptonChrome.css +++ b/css/leptonChrome.css @@ -6820,6 +6820,11 @@ /* Temporary solution for compatibility #513 */ overflow-y: clip; } + /* Border top #889 */ + #nav-bar { + border-top: none !important; + box-shadow: 0 -0.01px 0 ThreeDShadow; + } } /*= Selected Tab =============================================================*/ /*= Selected Tab - Bold ======================================================*/ @@ -20939,6 +20944,7 @@ z-index: 1 !important; } /* Pinned Tab - tabbrowser-arrowscrollbox overflowing */ + /* Border top #889 */ } @media (-moz-bool-pref: "userChrome.tab.connect_to_window") and (not (-moz-bool-pref: "userChrome.tabbar.multi_row")) { #TabsToolbar:not([multibar]) { @@ -20954,6 +20960,12 @@ overflow-y: clip; } } +@media (-moz-bool-pref: "userChrome.tab.connect_to_window") { + #nav-bar { + border-top: none !important; + box-shadow: 0 -0.01px 0 ThreeDShadow; + } +} /*= Selected Tab =============================================================*/ /*= Selected Tab - Bold ======================================================*/ @media not (-moz-bool-pref: "userChrome.tab.selected_bold") { diff --git a/css/leptonChromeESR.css b/css/leptonChromeESR.css index 2c5a6098..1cf61c6f 100644 --- a/css/leptonChromeESR.css +++ b/css/leptonChromeESR.css @@ -7250,6 +7250,11 @@ /* Temporary solution for compatibility #513 */ overflow-y: clip; } + /* Border top #889 */ + #nav-bar { + border-top: none !important; + box-shadow: 0 -0.01px 0 ThreeDShadow; + } } /*= Selected Tab =============================================================*/ /*= Selected Tab - Bold ======================================================*/ diff --git a/src/tab/_connect_to_window.scss b/src/tab/_connect_to_window.scss index 641130a4..674f9f32 100644 --- a/src/tab/_connect_to_window.scss +++ b/src/tab/_connect_to_window.scss @@ -34,3 +34,9 @@ overflow-y: clip; } } + +/* Border top #889 */ +#nav-bar { + border-top: none !important; + box-shadow: 0 -0.01px 0 ThreeDShadow; +}