How to get rid of space between tabs when pinning a tab?

User Help for Mozilla Firefox
Post Reply
max2
Posts: 278
Joined: September 17th, 2011, 5:37 pm

How to get rid of space between tabs when pinning a tab?

Post by max2 »

With Tree Style Tabs.

Thanks.

Image
Last edited by James on January 25th, 2019, 11:45 pm, edited 1 time in total.
Reason: made as a large thumbnail link to full size image as it was Way too big for IMG tags at 2,555px x 1,437px
morat
Posts: 6437
Joined: February 3rd, 2009, 6:29 pm

Re: How to get rid of space between tabs when pinning a tab?

Post by morat »

Try something like:

Code: Select all

/* Firefox userContent.css */

@-moz-document regexp("moz-extension://.*/sidebar/sidebar.html.*") {
  li.tab {
    background-color: orange !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
http://kb.mozillazine.org/UserContent.css
Post Reply