Skip to content

Commit

Permalink
Update selected_tabs_static_width.css
Browse files Browse the repository at this point in the history
  • Loading branch information
datguypiko authored Aug 19, 2023
1 parent 7a06db6 commit fb2c423
Showing 1 changed file with 11 additions and 2 deletions.
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;
}

0 comments on commit fb2c423

Please sign in to comment.