AdamXweb / WhiteSurFirefoxThemeMacOS

MacOS Big Sur like theme for Firefox on MacOS & Windows. Make your Firefox look like Safari.
MIT License
441 stars 28 forks source link

[FEAT] Tree style tab extension keeps tab padding #51

Closed GamerPlayer888 closed 2 years ago

GamerPlayer888 commented 2 years ago

How do remove the tabs bar? I have hidden them because I prefer to use Tree Style Tab (like Safari on iPadOS 15), but it remains visible empty. image

The buttons for window are a little too small, and sometimes I miss click, how do I reset the default to Windows or make them bigger?

AdamXweb commented 2 years ago

It sounds like you have two questions: For the first one, the following CSS code may fix your issue: #TabsToolbar{ height:0px !important; } toolbar{ min-height: 0px !important; }

To resize the menubar icons, you can edit the padding here: https://github.com/AdamXweb/WhiteSurFirefoxThemeMacOS/blob/a6dad249809c45124e5ea0f060f06a710ea8d431/chrome/WhiteSur/parts/windows.css#L4-L12

You can follow these instructions to edit the browser live: https://www.reddit.com/r/FirefoxCSS/comments/73dvty/tutorial_how_to_create_and_livedebug_userchromecss/

arashm commented 11 months ago

This is how I could remove the TabBar by adding it at the end of userChrome.css

#TabsToolbar {
  min-height: 0 !important;
}

#TabsToolbar > * {
  visibility: collapse !important
}

#TabsToolbar > .titlebar-buttonbox-container{
  visibility: visible !important;
  height:var(--uc-toolbar-height) !important;
}