From 93deb6300fb401d9f69374dd18b1ad8f4da41baa Mon Sep 17 00:00:00 2001 From: svl Date: Fri, 14 Oct 2022 14:52:20 +0200 Subject: [PATCH] pinned tabs dissapearing fix --- src/other/firefox/Monterey/parts/tabsbar.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/other/firefox/Monterey/parts/tabsbar.css b/src/other/firefox/Monterey/parts/tabsbar.css index e531964..f789fa0 100644 --- a/src/other/firefox/Monterey/parts/tabsbar.css +++ b/src/other/firefox/Monterey/parts/tabsbar.css @@ -18,10 +18,15 @@ tab > stack { background-image: none !important; } -.tabbrowser-tab { +.tabbrowser-tab:not([pinned]) { margin: 2px 0 0 !important; } +.tabbrowser-tab[pinned] { + margin-top: 2px !important; + margin-bottom: 0 !important; +} + .tabbrowser-tab:not([visuallyselected="true"], [multiselected]), .tabbrowser-tab:-moz-lwtheme { color: var(--gnome-tabbar-tab-color) !important; }