From a4d7b12decf4a3a5e76825d6d462b94c3ed1fa45 Mon Sep 17 00:00:00 2001 From: "Michael A." Date: Fri, 7 Mar 2025 13:09:11 +0100 Subject: [PATCH] Enable collapsing of tab groups in multi-row tabs (#525) --- chrome/multi-row_tabs.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/chrome/multi-row_tabs.css b/chrome/multi-row_tabs.css index 6427b40..aec82bd 100644 --- a/chrome/multi-row_tabs.css +++ b/chrome/multi-row_tabs.css @@ -83,4 +83,9 @@ See the above repository for updates as well as full license text. */ @media (-moz-bool-pref: "userchrome.multirowtabs.scrollbar-handle.enabled"), -moz-pref( "userchrome.multirowtabs.scrollbar-handle.enabled"){ #tabbrowser-arrowscrollbox{ -moz-window-dragging: no-drag } -} \ No newline at end of file +} + +/* Make tab groups collapse */ +tab-group[collapsed] .tabbrowser-tab[fadein]:not([pinned]){ + min-width: 0 !important; +}