From d8064b83e88b3529a849baf4e54989b2e6f9a300 Mon Sep 17 00:00:00 2001 From: Sai Kurogetsu Date: Mon, 11 Dec 2017 20:41:49 +0000 Subject: [PATCH] don't resize tabs when the mouse is over the tab bar, issue #10 --- ui/theme.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ui/theme.css b/ui/theme.css index 839525d..5b3a036 100644 --- a/ui/theme.css +++ b/ui/theme.css @@ -407,10 +407,12 @@ tab[selected] { } /* Full width tabs */ -.tabbrowser-tab:not([pinned]) { +.tabbrowser-tab:not([style^="max-width"]):not([pinned]), +.tabbrowser-tab[style^="max-width: 100px !important;"]:not([pinned]) { max-width: 100% !important; } -.tabbrowser-tab:not([pinned]):not([fadein]) { +.tabbrowser-tab:not([style^="max-width"]):not([pinned]):not([fadein]), +.tabbrowser-tab[style^="max-width: 100px !important;"]:not([pinned]):not([fadein]) { max-width: 0.1px !important; }