From 5957bb939f55288d13458577ec6ebdbed8e5a7c1 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sun, 29 Mar 2026 18:12:40 +0300 Subject: [PATCH] multi-row tabs: decrease selector specificity for tab min-width --- chrome/multi-row_tabs.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/multi-row_tabs.css b/chrome/multi-row_tabs.css index b8c5bbd..88e3f56 100644 --- a/chrome/multi-row_tabs.css +++ b/chrome/multi-row_tabs.css @@ -53,7 +53,7 @@ See the above repository for updates as well as full license text. */ tab-split-view-wrapper { min-width: calc(var(--multirow-tab-min-width) * 2 + 6px) !important; } -#tabbrowser-tabs[orient="horizontal"] .tabbrowser-tab[fadein]:not([pinned]){ +:where(#tabbrowser-tabs[orient="horizontal"]) .tabbrowser-tab[fadein]:not([pinned]){ min-width: var(--multirow-tab-min-width) !important; flex-grow: var(--multirow-tab-dynamic-width) !important; } @@ -80,6 +80,6 @@ tab-split-view-wrapper { } /* Make tab groups collapse */ -tab-group[collapsed] .tabbrowser-tab[fadein]:not([pinned]){ +tab-group[collapsed] > .tabbrowser-tab[fadein]:not([pinned]){ min-width: 0 !important; }