From a1b87da84bbe7f6c887c453f4254113951465ee3 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Wed, 23 Jun 2021 16:00:46 +0300 Subject: [PATCH] don't set max-width when it is set with inline style during closing tabs. --- chrome/tabs_fill_available_width.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/tabs_fill_available_width.css b/chrome/tabs_fill_available_width.css index b8890dc..f7a3094 100644 --- a/chrome/tabs_fill_available_width.css +++ b/chrome/tabs_fill_available_width.css @@ -2,4 +2,4 @@ See the above repository for updates as well as full license text. */ /* Why 100vw? Tab closing requires width animation to end and "none" can't be animated */ -.tabbrowser-tab[fadein]{ max-width: 100vw !important } \ No newline at end of file +.tabbrowser-tab[fadein]:not([style^="max-width"]){ max-width: 100vw !important } \ No newline at end of file