Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

Reduce the tab height in pixels for FF29

  • 1 antwoord
  • 6 hierdie probleem
  • 5 views
  • Laaste antwoord deur cor-el

more options

I have read all the threads her eon the forums. I have tried the addons. I have googled, and googled and googled.

Is there a way to reduce the height of the tabs in terms of pixels or not?

I have edited my css file. I have tried the classic theme restorer and other.

I like the overall look of FF29. I just want want the tabs the same height as they were in FF28 in terms of pixel height.

This affects all my computers running both Linux and Windows 7 Pro.

I have read all the threads her eon the forums. I have tried the addons. I have googled, and googled and googled. Is there a way to reduce the height of the tabs in terms of pixels or not? I have edited my css file. I have tried the classic theme restorer and other. I like the overall look of FF29. I just want want the tabs the same height as they were in FF28 in terms of pixel height. This affects all my computers running both Linux and Windows 7 Pro.

All Replies (1)

more options

There is a min-height: 31px set that you need to override by specifying a lower value and adding the !important flag.

#tabbrowser-tabs {
 height:26px!important;
 min-height: 26px !important;
}

.tab-background-start[selected=true]::after,
.tab-background-start[selected=true]::before,
.tab-background-start,
.tab-background-end,
.tab-background-end[selected=true]::after,
.tab-background-end[selected=true]::before {
  min-height: 26px !important;
}

See chrome://browser/skin/browser.css

#tabbrowser-tabs {
  min-height: 31px;
}

.tab-background-start[selected=true]::after,
.tab-background-start[selected=true]::before,
.tab-background-start,
.tab-background-end,
.tab-background-end[selected=true]::after,
.tab-background-end[selected=true]::before {
  min-height: 31px;
  width: 30px;
}

Gewysig op deur cor-el