From a2d00c282da3d69fc853908b352dd93cdee19224 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Tue, 26 Nov 2024 17:46:42 +0200 Subject: [PATCH] tab separator lines: hide separator next to hidden tab after selected This isn't a proper fix for the issue, but fixes a special case where there is only on hidden tab after the selected tab - this is what happens with firefox-view button. Fixes #450 --- chrome/tab_separator_lines.css | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/tab_separator_lines.css b/chrome/tab_separator_lines.css index 2f77db4..e45f41f 100644 --- a/chrome/tab_separator_lines.css +++ b/chrome/tab_separator_lines.css @@ -18,6 +18,7 @@ See the above repository for updates as well as full license text. */ .tabbrowser-tab:first-child, .tabbrowser-tab[selected], .tabbrowser-tab[multiselected], +.tabbrowser-tab:is([selected],[multiselected]) + .tabbrowser-tab[hidden] + .tabbrowser-tab, #tabbrowser-arrowscrollbox[overflowing] > .tabbrowser-tab[first-visible-unpinned-tab], #tabbrowser-tabs:not([movingtab]) .tabbrowser-tab[multiselected] + .tabbrowser-tab, #tabbrowser-tabs:not([movingtab]) .tabbrowser-tab[selected] + .tabbrowser-tab { border-image: none !important; } \ No newline at end of file