Skip to content

reduce tab bar height #233

Answered by rafaelmardojai
SilverMarcs asked this question in Q&A
Discussion options

You must be logged in to vote

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 Show all tabs or New tab, the tabs will expand to it's height and you will also need to reduce tabsbar buttons height with this:

/* 4px less than the tabs height */
#TabsToolbar .toolbarbutton-1 {
	height: 26px !important;
	max-height: 26px !important;
	min-height: 26px !important;
}

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@SilverMarcs
Comment options

@rafaelmardojai
Comment options

@SilverMarcs
Comment options

@rafaelmardojai
Comment options

@SilverMarcs
Comment options

Answer selected by SilverMarcs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #232 on May 22, 2021 22:18.