From a0a477cebf3e03c24122fe660f063cfb27f14e09 Mon Sep 17 00:00:00 2001 From: AMS777 <32177639+AMS777@users.noreply.github.com> Date: Mon, 28 Nov 2022 22:38:01 +0100 Subject: [PATCH] Fix empty tab rows on Firefox 107 (#232) On Firefox 107, the tab bar displays all the tab rows, even if they are empty because there are few tabs. This change removes the empty tab rows and restores the right behavior, only displaying tab rows when there are too many tabs to fit in one row. --- chrome/multi-row_tabs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/multi-row_tabs.css b/chrome/multi-row_tabs.css index a18df18..d4b4887 100644 --- a/chrome/multi-row_tabs.css +++ b/chrome/multi-row_tabs.css @@ -46,7 +46,7 @@ See the above repository for updates as well as full license text. */ .scrollbox-clip[orient="horizontal"], #tabbrowser-arrowscrollbox{ overflow: -moz-hidden-unscrollable; - display: block; + display: inline; --scrollbutton-display-model: none; }