-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update selected_tabs_static_width.css
- Loading branch information
1 parent
7a06db6
commit fb2c423
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
13 changes: 11 additions & 2 deletions
13
EXTRA MODS/Tabs - selected tabs static width/selected_tabs_static_width.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
/* Tabs on selection have static width */ | ||
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab[selected][fadein]:not([pinned]) { | ||
max-width: var(--firefoxcss-tab-max-width) !important; | ||
:root { | ||
--firefoxcss-tab-min-width: 110px !important; | ||
--firefoxcss-tab-max-width: 180px !important; | ||
} | ||
|
||
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab[fadein]:not([pinned]){ | ||
max-width: var(--firefoxcss-tab-max-width) !important; | ||
min-width: var(--firefoxcss-tab-min-width) !important; | ||
} | ||
|
||
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab[selected][fadein]:not([pinned]) { | ||
max-width: var(--firefoxcss-tab-max-width) !important; | ||
} |