Adjust tab max-width to 100% to mirror GTK's normal tab behavior.

The fadein line removes some large blank spots that are often created after tabs are closed.
This commit is contained in:
Sean White 2017-12-10 15:32:32 +11:00
parent 476ef93cc1
commit 4dfcfaca9b
1 changed files with 9 additions and 0 deletions

View File

@ -405,3 +405,12 @@ tab[selected] {
border-left: var(--gnome-tabbar-tab-hover-border-sides) !important;
border-bottom: var(--gnome-tabbar-tab-hover-border-bottom) !important;
}
/* Full width tabs */
.tabbrowser-tab:not([pinned]) {
max-width: 100% !important;
}
.tabbrowser-tab:not([pinned]):not([fadein]) {
max-width: 0.1px !important;
}