reduce tab bar height #233
-
The current implementation of tab bar seems gigantic. Perhaps the height can be reduced for better screen estate? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Yeah, it's intended to follow GNOME aesthetics. You can set the tabs height like this: /* reduce tabs to 30px */
tab > stack {
height: 30px !important;
min-height: 30px !important;
}
#tabbrowser-tabs[positionpinnedtabs] > #tabbrowser-arrowscrollbox > .tabbrowser-tab[pinned] {
min-height: 30px !important;
} But remember that if there's a button on the tabsbar, like /* 4px less than the tabs height */
#TabsToolbar .toolbarbutton-1 {
height: 26px !important;
max-height: 26px !important;
min-height: 26px !important;
} |
Beta Was this translation helpful? Give feedback.
Yeah, it's intended to follow GNOME aesthetics.
You can set the tabs height like this:
But remember that if there's a button on the tabsbar, like
Show all tabs
orNew tab
, the tabs will expand to it's height and you will also need to reduce tabsbar buttons height with this: