Skip to content

Instantly share code, notes, and snippets.

@morrolinux
Last active November 13, 2024 22:50
Show Gist options
  • Save morrolinux/87aa37396432ea5d14a9220bc4892100 to your computer and use it in GitHub Desktop.
Save morrolinux/87aa37396432ea5d14a9220bc4892100 to your computer and use it in GitHub Desktop.
FIrefox - Vertical tab bar with auto hide

What to expect

Graphical aspect may vary depending on your choices in following the instructions below, but the end result should look something like this:

immagine

Enable Firefox features

Go to about:config and set all of the following to true:

    toolkit.legacyUserProfileCustomizations.stylesheets
    layers.acceleration.force-enabled
    gfx.webrender.all
    gfx.webrender.enabled
    layout.css.backdrop-filter.enabled
    svg.context-properties.content.enabled
    
    # LINUX ONLY - WORKAROUND FOR BAR HIDING ON DRAG EVENT
    widget.gtk.ignore-bogus-leave-notify = 1

Write your userChrome.css

  1. Find your Firefox profile folder (about:support --> "Profile Directory")
  2. Create a folder named chrome inside it.
  3. Create a file named userChrome.css inside the chrome folder you just created.
  4. Paste in userChrome.css whatever you like from above
  5. Restart Firefox for changes to take effect. If nothing changes, try going to about:profiles and click the "Restart Normally" button in the upper right portion of the screen. Thanks @kr1s7ian for pointing this out.

To hide the "classic" horizontal tab toolar entirely

Paste this in your userChrome.css:

#TabsToolbar
{
    visibility: collapse;
}

To decrease the size of the sidebar header

Paste this in your userChrome.css:


/**
 * Decrease size of the sidebar header
 */
#sidebar-header {
  font-size: 1.2em !important;
  padding: 2px 6px 2px 3px !important;
}
#sidebar-header #sidebar-close {
  padding: 3px !important;
}
#sidebar-header #sidebar-close .toolbarbutton-icon {
  width: 14px !important;
  height: 14px !important;
  opacity: 0.6 !important;
}

To remove the sidebar header entirely

Paste this in your userChrome.css:

#sidebar-header {
  display: none;
}

To auto-hide the tab sidebar

Paste this in your userChrome.css:

#sidebar-header {
  /* display: none; */
  visibility: collapse !important;
}

/* Hide splitter */
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] + #sidebar-splitter {
  display: none !important;
}

/* Shrink sidebar until hovered */
:root {
  --thin-tab-width: 32px;
  --wide-tab-width: 300px;
}
#sidebar-box:not([sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]) {
  min-width: var(--wide-tab-width) !important;
  max-width: none !important;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
  overflow: hidden !important;
  position: relative !important;
  transition: all 300ms !important;
  /*transition: all 0ms 0s !important;*/
  min-width: var(--thin-tab-width) !important;
  max-width: var(--thin-tab-width) !important;
  z-index: 2;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover,
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] #sidebar {
  /*transition-delay: 0s !important;*/
  transition: all 300ms !important;
  min-width: var(--wide-tab-width) !important;
  max-width: var(--wide-tab-width) !important;
  z-index: 1;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover {
  margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
}

To auto-hide the horizontal tab bar when the sidebar is active

Paste this in your userChrome.css:

#main-window #titlebar {
  overflow: hidden;
  transition: height 0.3s 0.3s !important;
}
/* Default state: Set initial height to enable animation */
/* #main-window #titlebar { height: 3em !important; } */
#main-window[uidensity="touch"] #titlebar { height: 3.35em !important; }
#main-window[uidensity="compact"] #titlebar { height: 2.7em !important; }
/* Hidden state: Hide native tabs strip */
#main-window[titlepreface*="XXX"] #titlebar { height: 0 !important; }
/* Hidden state: Fix z-index of active pinned tabs */
#main-window[titlepreface*="XXX"] #tabbrowser-tabs { z-index: 0 !important; }

And then go to Sidebery settings > General > Preface value, enable it and set it to XXX.

Now You also need to remove indent when the bar is collapsed, or you won't be able to see all tabs

Go to SideBery settings --> Styles editor and add:

#root:not(:hover){
  --tabs-indent: 0;
}

EXTRA: Window close button

Credits: AndryGabry on my Patreon and @XargonWan here on github.

If you need the "window close" button, you can add it to your address bar.

  1. Comment out this line:
/* Hidden state: Hide native tabs strip */
/*#main-window[titlepreface*="XXX"] #titlebar { height: 0 !important; }*/
  1. Add the following:
/*Reference https://www.userchrome.org/*/
/* Hide title bar but keep window controls (minimize, maximize, close) */
/*Hide tabs and other things inside the titlebar, except window buttons*/
#main-window[titlepreface*="XXX"] .tabbrowser-tab{  display: none !important; }
#main-window[titlepreface*="XXX"] .scrollbox-clip{  width: 0 !important; }
#main-window[titlepreface*="XXX"] #alltabs-button{  display: none !important; }
#main-window[titlepreface*="XXX"] .toolbar-items{  display: none !important; }
/*Make sure that the titlebar and navbar are both on the same line*/
#main-window[titlepreface*="XXX"] #navigator-toolbox{  display: flex !important; box-sizing: border-box; justify-content:space-between; flex-direction: row-reverse;   flex-wrap: wrap; }
#main-window[titlepreface*="XXX"] .titlebar-spacer{  display: none !important; }
#main-window[titlepreface*="XXX"] #nav-bar{border-radius: 5px 0 0 0; display: flex; box-sizing: border-box; padding-top: 2px; align-items: center; flex: 1; flex-basis: 50%; width: 100% !important; }
/* on GNOME you can use max-width: 48px below, if you only have the "Close" button on windows (default) */
#main-window[titlepreface*="XXX"] #titlebar{border-radius: 0 5px 0 0; border-left: none !important; margin-top: 1px; flex: 1; flex-basis: 50%; width:10% !important; display: flex; max-width: 100px;   align-items: center;background-color: var(--toolbar-bgcolor) !important; border-left: 1px solid var(--toolbar-color);}
#main-window[titlepreface*="XXX"] #titlebar:-moz-window-inactive{opacity: 1 !important;}
#main-window[titlepreface*="XXX"] #TabsToolbar > *:not(.titlebar-buttonbox-container) {display: none !important;}
#PersonalToolbar {width: 100% !important; }
#tab-notification-deck {width: 100% !important;   flex-basis: 100%; width: 100% !important;}
@dj-var
Copy link

dj-var commented Jun 15, 2024

My post was referred to the comment of @IvanLusso about showing the horizontal tab bar.

Sorry, I wasn't referring to you. I was responding to my earlier comments mentioning the issue of the window control buttons not displaying...

@fabfic
Copy link

fabfic commented Jun 23, 2024

For now essentially 2 issues: no orizontal tabs any more and cutting the first bookmark.

immagine

@Gt1ult I think i found a solution about the sidebar cutting the first bookmark.

I managed to fix it by commenting out the line z-index: 2; in

#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
  overflow: hidden !important;
  position: relative !important;
  transition: all 300ms !important;
  /*transition: all 0ms 0s !important;*/
  min-width: var(--thin-tab-width) !important;
  max-width: var(--thin-tab-width) !important;
  /* z-index: 2; */
}

Like shown here ↑

@Gt1ult
Copy link

Gt1ult commented Jun 24, 2024

For now essentially 2 issues: no orizontal tabs any more and cutting the first bookmark.

immagine

@Gt1ult I think i found a solution about the sidebar cutting the first bookmark.

I managed to fix it by commenting out the line z-index: 2; in

#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
  overflow: hidden !important;
  position: relative !important;
  transition: all 300ms !important;
  /*transition: all 0ms 0s !important;*/
  min-width: var(--thin-tab-width) !important;
  max-width: var(--thin-tab-width) !important;
  /* z-index: 2; */
}

Like shown here ↑

Thanks so much!!! Indeed problem solved!!!

@spupuz
Copy link

spupuz commented Jun 27, 2024

i have no buttons (minimize close and maximise) in linux and windows

@spupuz
Copy link

spupuz commented Jun 28, 2024

image

I'm having this glitch on Win10. I tried tweaking the css, but I can't manage to make the buttons look right.

Also, above the minimize button the border is not in line with the rest of the window, as you can see in the screenshot. My priority would be fixing the close button's position first, though.

do you solved it?

@robertobissanti
Copy link

Screenshot 2024-07-03 alle 15 33 41 Screenshot 2024-07-03 alle 15 34 13

How can i remove the title "EXPLORER" from sidebar?

@robertobissanti
Copy link

Screenshot 2024-07-03 alle 15 35 53

How can I restore the close, resize and hide buttons in the bar? (I use firefox on mac os)

@robertobissanti
Copy link

i have no buttons (minimize close and maximise) in linux and windows

The same issue in macos, see above.

@Lor3nntz
Copy link

Lor3nntz commented Jul 5, 2024

Non riesco a rimuovere la barra orizzontale in alto scusa mi potresiti riscrivere la stringa di comando per farlo??Grazie

@Lor3nntz
Copy link

Lor3nntz commented Jul 5, 2024

Sempre se si puo fare

@Sdighi
Copy link

Sdighi commented Jul 10, 2024

image

I'm having this glitch on Win10. I tried tweaking the css, but I can't manage to make the buttons look right.

Also, above the minimize button the border is not in line with the rest of the window, as you can see in the screenshot. My priority would be fixing the close button's position first, though.

change max-width: 100px;
in max-width: 130px;

in the line:

#main-window[titlepreface*="XXX"] #titlebar{border-radius: 0 5px 0 0; border-left: none !important; margin-top: 1px; flex: 1; flex-basis: 50%; width:10% !important; display: flex; max-width: 130px; align-items: center;

@Caddy8970
Copy link

image

Hi, I'm having an issue with Firefox's window not showing the black border near the corners when using sidebery with your setup. How can I fix this? I'm currently running XFCE as my Desktop Environment

@giordano-bruno-michela-its

image
I'm having this glitch on Win10. I tried tweaking the css, but I can't manage to make the buttons look right.
Also, above the minimize button the border is not in line with the rest of the window, as you can see in the screenshot. My priority would be fixing the close button's position first, though.

change max-width: 100px; in max-width: 130px;

in the line:

#main-window[titlepreface*="XXX"] #titlebar{border-radius: 0 5px 0 0; border-left: none !important; margin-top: 1px; flex: 1; flex-basis: 50%; width:10% !important; display: flex; max-width: 130px; align-items: center;

Great, that works perfectly.

@LegendsIta
Copy link

image
I'm having this glitch on Win10. I tried tweaking the css, but I can't manage to make the buttons look right.
Also, above the minimize button the border is not in line with the rest of the window, as you can see in the screenshot. My priority would be fixing the close button's position first, though.

change max-width: 100px; in max-width: 130px;

in the line:

#main-window[titlepreface*="XXX"] #titlebar{border-radius: 0 5px 0 0; border-left: none !important; margin-top: 1px; flex: 1; flex-basis: 50%; width:10% !important; display: flex; max-width: 130px; align-items: center;

Thank you, you solved that very annoying problem for me!

@CarloCattano
Copy link

CarloCattano commented Jul 19, 2024

is there a way to still be able to drag and reorganize tabs without the sidebar auto closing ?
At the moment with morro's config , when draggin a tab to reorganize it in the tree , the bar auto hides

** I had a space in widget.gtk.ignore-bogus-leave-notify = 1

Anyone found a way to keep a shortcut to expand the bar , not only on hover ?

Grande @morrolinux !

@lorenzoantei
Copy link

It seems that the option to hide the top bar of open tabs has stopped working with the latest versions.

$ cat userChrome.css 
#TabsToolbar
{
    visibility: collapse;
}
/**
 * Decrease size of the sidebar header
 */
#sidebar-header {
  font-size: 1.2em !important;
  padding: 2px 6px 2px 3px !important;
}
#sidebar-header #sidebar-close {
  padding: 3px !important;
}
#sidebar-header #sidebar-close .toolbarbutton-icon {
  width: 14px !important;
  height: 14px !important;
  opacity: 0.6 !important;
}
#sidebar-header {
  display: none;
}
#sidebar-header {
  /* display: none; */
  visibility: collapse !important;
}

/* Hide splitter */
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] + #sidebar-splitter {
  display: none !important;
}

/* Shrink sidebar until hovered */
:root {
  --thin-tab-width: 32px;
  --wide-tab-width: 300px;
}
#sidebar-box:not([sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]) {
  min-width: var(--wide-tab-width) !important;
  max-width: none !important;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
  overflow: hidden !important;
  position: relative !important;
  transition: all 300ms !important;
  /*transition: all 0ms 0s !important;*/
  min-width: var(--thin-tab-width) !important;
  max-width: var(--thin-tab-width) !important;
  z-index: 2;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover,
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] #sidebar {
  /*transition-delay: 0s !important;*/
  transition: all 300ms !important;
  min-width: var(--wide-tab-width) !important;
  max-width: var(--wide-tab-width) !important;
  z-index: 1;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover {
  margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
}
#main-window #titlebar {
  overflow: hidden;
  transition: height 0.3s 0.3s !important;
}
/* Default state: Set initial height to enable animation */
/* #main-window #titlebar { height: 3em !important; } */
#main-window[uidensity="touch"] #titlebar { height: 3.35em !important; }
#main-window[uidensity="compact"] #titlebar { height: 2.7em !important; }
/* Hidden state: Hide native tabs strip */
/* #main-window[titlepreface*="XXX"] #titlebar { height: 0 !important; } */
/* Hidden state: Fix z-index of active pinned tabs */
#main-window[titlepreface*="XXX"] #tabbrowser-tabs { z-index: 0 !important; }
$ firefox -v
Mozilla Firefox 128.0

@robertobissanti
Copy link

robertobissanti commented Jul 29, 2024

It seems that the option to hide the top bar of open tabs has stopped working with the latest versions.

$ cat userChrome.css 
#TabsToolbar
 ...

It works with this file (userChrome.css), but does not reappear when the extension is deactivated.

#TabsToolbar
{
    visibility: collapse;
}

/**
 * Decrease size of the sidebar header
 */
#sidebar-header {
  font-size: 1.2em !important;
  padding: 2px 6px 2px 3px !important;
}
#sidebar-header #sidebar-close {
  padding: 3px !important;
}
#sidebar-header #sidebar-close .toolbarbutton-icon {
  width: 14px !important;
  height: 14px !important;
  opacity: 0.6 !important;
}

#sidebar-header {
  display: none;
}

#sidebar-header {
  /* display: none; */
  visibility: collapse !important;
}

/* Hide splitter */
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] + #sidebar-splitter {
  display: none !important;
}

/* Shrink sidebar until hovered */
:root {
  --thin-tab-width: 32px;
  --wide-tab-width: 300px;
}
#sidebar-box:not([sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]) {
  min-width: var(--wide-tab-width) !important;
  max-width: none !important;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
  overflow: hidden !important;
  position: relative !important;
  transition: all 300ms !important;
  /*transition: all 0ms 0s !important;*/
  min-width: var(--thin-tab-width) !important;
  max-width: var(--thin-tab-width) !important;
  z-index: 2;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover,
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] #sidebar {
  /*transition-delay: 0s !important;*/
  transition: all 300ms !important;
  min-width: var(--wide-tab-width) !important;
  max-width: var(--wide-tab-width) !important;
  z-index: 1;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover {
  margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
}

#main-window #titlebar {
  overflow: hidden;
  transition: height 0.3s 0.3s !important;
}
/* Default state: Set initial height to enable animation */
/* #main-window #titlebar { height: 3em !important; } */
#main-window[uidensity="touch"] #titlebar { height: 3.35em !important; }
#main-window[uidensity="compact"] #titlebar { height: 2.7em !important; }
/* Hidden state: Hide native tabs strip */
/*#main-window[titlepreface*="XXX"] #titlebar { height: 0 !important; }*/
/* Hidden state: Fix z-index of active pinned tabs */
#main-window[titlepreface*="XXX"] #tabbrowser-tabs { z-index: 0 !important; }

/*Reference https://www.userchrome.org/*/
/* Hide title bar but keep window controls (minimize, maximize, close) */
/*Hide tabs and other things inside the titlebar, except window buttons*/
#main-window[titlepreface*="XXX"] .tabbrowser-tab{  display: none !important; }
#main-window[titlepreface*="XXX"] .scrollbox-clip{  width: 0 !important; }
#main-window[titlepreface*="XXX"] #alltabs-button{  display: none !important; }
#main-window[titlepreface*="XXX"] .toolbar-items{  display: none !important; }
/*Make sure that the titlebar and navbar are both on the same line*/
#main-window[titlepreface*="XXX"] #navigator-toolbox{  display: flex !important; box-sizing: border-box; justify-content:space-between; flex-direction: row;   flex-wrap: wrap; }
#main-window[titlepreface*="XXX"] .titlebar-spacer{  display: none !important; }
#main-window[titlepreface*="XXX"] #nav-bar{border-radius: 5px 0 0 0; display: flex; box-sizing: border-box; padding-top: 2px; align-items: center; flex: 1; flex-basis: 50%; width: 100% !important; }
/* on GNOME you can use max-width: 48px below, if you only have the "Close" button on windows (default) */
#main-window[titlepreface*="XXX"] #titlebar{border-radius: 0 5px 0 0; border-left: none !important; margin-top: 1px; flex: 1; flex-basis: 50%; width:10% !important; display: flex; max-width: 100px;   align-items: center;background-color: var(--toolbar-bgcolor) !important; border-left: 1px solid var(--toolbar-color);}
#main-window[titlepreface*="XXX"] #titlebar:-moz-window-inactive{opacity: 1 !important;}
#main-window[titlepreface*="XXX"] #TabsToolbar > *:not(.titlebar-buttonbox-container) {display: none !important;}
#PersonalToolbar {width: 100% !important; }
#tab-notification-deck {width: 100% !important;   flex-basis: 100%; width: 100% !important;}



#TabsToolbar>.toolbar-items{
    display: none;
}

/* sidebar */
#sidebar-header {
    display: none;
}


/*:root {
    --thin-tab-width: 38px;
    --wide-tab-width: 300px;
}*/



#sidebar-box:not([sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]) {
    min-width: var(--wide-tab-width) !important;
    max-width: none !important;
}


#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
    overflow: hidden !important;
    position: relative !important;
    transition: all 300ms !important;
    min-width: var(--thin-tab-width) !important;
    max-width: var(--thin-tab-width) !important;
    transition-delay: 600ms !important;
    z-index: 2;
}

#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover,
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] #sidebar {
    transition: all ease-out 300ms !important;
    min-width: var(--wide-tab-width) !important;
    max-width: var(--wide-tab-width) !important;
    transition-delay: 300ms !important;
    z-index: 1;
}

#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover {
    margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
}

@spupuz
Copy link

spupuz commented Aug 9, 2024

i have address bar that is so small how can make it larger?

image

@frater1998
Copy link

frater1998 commented Sep 20, 2024

not working for windows 11, can anyone help me?

@fragrusti
Copy link

Hi all, in F nightly 133.0a1 this auto-hide part is not working anymore:

#main-window #titlebar {
overflow: hidden;
transition: height 0.3s 0.3s !important;
}
/* Default state: Set initial height to enable animation /
/
#main-window #titlebar { height: 3em !important; } /
#main-window[uidensity="touch"] #titlebar { height: 3.35em !important; }
#main-window[uidensity="compact"] #titlebar { height: 2.7em !important; }
/
Hidden state: Hide native tabs strip /
#main-window[titlepreface
="XXX"] #titlebar { height: 0 !important; }
/* Hidden state: Fix z-index of active pinned tabs /
#main-window[titlepreface
="XXX"] #tabbrowser-tabs { z-index: 0 !important; }

I had to hide completely the tabs bar with collapse.

Moreover I ha to adjust z-index to have sidebar ontop of main window once again:

#sidebar-box[sidebarcommand="3c078156-979c-498b-8990-85f7987dd929-sidebar-action"]:hover,
#sidebar-box[sidebarcommand="3c078156-979c-498b-8990-85f7987dd929-sidebar-action"]
#sidebar {
/transition-delay: 0s !important;/
transition: all 300ms !important;
min-width: var(--wide-tab-width) !important;
max-width: var(--wide-tab-width) !important;
z-index: 6 !important;
}

Just my 2 cents.

Regards,
F

@P-ek
Copy link

P-ek commented Oct 25, 2024

Fragrusti try this! For me works well!!

#tabbrowser-tabs, #new-tab-button, #alltabs-button { display: none; }

#sidebar-header {
display: none;
}

#sidebar-header {
/* display: none; */
visibility: collapse !important;
}

/* Hide splitter */
#sidebar-box[sidebarcommand="3c078156-979c-498b-8990-85f7987dd929-sidebar-action"] + #sidebar-splitter {
display: none !important;
}

/* Shrink sidebar until hovered */
:root {
--thin-tab-width: 32px;
--wide-tab-width: 300px;
}
#sidebar-box:not([sidebarcommand="3c078156-979c-498b-8990-85f7987dd929-sidebar-action"]) {
min-width: var(--wide-tab-width) !important;
max-width: none !important;
}
#sidebar-box[sidebarcommand="3c078156-979c-498b-8990-85f7987dd929-sidebar-action"] {
overflow: hidden !important;
position: relative !important;
transition: all 300ms !important;
/transition: all 0ms 0s !important;/
min-width: var(--thin-tab-width) !important;
max-width: var(--thin-tab-width) !important;
z-index: 2;
}
#sidebar-box[sidebarcommand="3c078156-979c-498b-8990-85f7987dd929-sidebar-action"]:hover,
#sidebar-box[sidebarcommand="3c078156-979c-498b-8990-85f7987dd929-sidebar-action"] #sidebar {
/transition-delay: 0s !important;/
transition: all 300ms !important;
min-width: var(--wide-tab-width) !important;
max-width: var(--wide-tab-width) !important;
z-index: 1;
}
#sidebar-box[sidebarcommand="3c078156-979c-498b-8990-85f7987dd929-sidebar-action"]:hover {
margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
}

#main-window #titlebar {
overflow: hidden;
transition: height 0.3s 0.3s !important;
}
/* Default state: Set initial height to enable animation /
/
#main-window #titlebar { height: 3em !important; } /
#main-window[uidensity="touch"] #titlebar { height: 3.35em !important; }
#main-window[uidensity="compact"] #titlebar { height: 2.7em !important; }
/
Hidden state: Hide native tabs strip /
#main-window[titlepreface
="XXX"] #titlebar { height: 0 !important; }
/* Hidden state: Fix z-index of active pinned tabs /
#main-window[titlepreface
="XXX"] #tabbrowser-tabs { z-index: 0 !important; }

@P-ek
Copy link

P-ek commented Nov 1, 2024 via email

@Puncia
Copy link

Puncia commented Nov 2, 2024

Has anyone been able to make the hover/auto-hide part working in FF 133.0b3 on Windows? It's been broken for a couple of days now. The solutions above don't seem to work.

my userChrome.css:

#TabsToolbar
{
    visibility: collapse;
}

#sidebar-header {
    display: none;
  }

  #sidebar-header {
    /* display: none; */
    visibility: collapse !important;
  }
  
  /* Hide splitter */
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] + #sidebar-splitter {
    display: none !important;
  }
  
  /* Shrink sidebar until hovered */
  :root {
    --thin-tab-width: 32px;
    --wide-tab-width: 300px;
  }
  #sidebar-box:not([sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]) {
    min-width: var(--wide-tab-width) !important;
    max-width: none !important;
  }
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
    overflow: hidden !important;
    position: relative !important;
    transition: all 300ms !important;
    /*transition: all 0ms 0s !important;*/
    min-width: var(--thin-tab-width) !important;
    max-width: var(--thin-tab-width) !important;
    z-index: 2;
  }
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover,
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] #sidebar {
    /*transition-delay: 0s !important;*/
    transition: all 300ms !important;
    min-width: var(--wide-tab-width) !important;
    max-width: var(--wide-tab-width) !important;
    z-index: 1;
  }
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover {
    margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
  }

  #main-window #titlebar {
    overflow: hidden;
    transition: height 0.3s 0.3s !important;
  }
  /* Default state: Set initial height to enable animation */
  /* #main-window #titlebar { height: 3em !important; } */
  #main-window[uidensity="touch"] #titlebar { height: 3.35em !important; }
  #main-window[uidensity="compact"] #titlebar { height: 2.7em !important; }
  /* Hidden state: Hide native tabs strip */
  #main-window[titlepreface*="XXX"] #titlebar { height: 0 !important; }
  /* Hidden state: Fix z-index of active pinned tabs */
  #main-window[titlepreface*="XXX"] #tabbrowser-tabs { z-index: 0 !important; }

@XargonWan
Copy link

XargonWan commented Nov 9, 2024

A note worth to add for Flatpak Firefox, to check where your profile folder is you need to:

  • browse about:config
  • check the profile where you will find "impossible to delete this profile as it's in use" (or such)
  • there you will see something like /home/user/.var/app/org.mozilla.firefox/.mozilla/firefox/abc12345.default

@LeonardoBeleffi
Copy link

LeonardoBeleffi commented Nov 11, 2024

@Puncia

Has anyone been able to make the hover/auto-hide part working in FF 133.0b3 on Windows? It's been broken for a couple of days now. The solutions above don't seem to work.

By tampering here and there I managed to find out that the line which breaks everything is the following one:

margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;

By commenting it out I have my hover working again. Unfortunately it doesn't work like before, so when the sidebar expands it does so "on the same level" as the underlying page, thus forcing the page to resize.

If someone finds out how to solve this properly, please tell us.

BTW, in order to get the tab bar to disappear and then reappear based on the activation of sidebery, I also added this line:

#main-window[titlepreface*="XXX"] #TabsToolbar { visibility: collapse; }

Another thing, the code that should move the three buttons from the tab bar to the address bar is a little off. It puts the buttons too centered, and that forces all the other buttons to disappear.

@Puncia
Copy link

Puncia commented Nov 12, 2024

@LeonardoBeleffi thanks, I managed to restore the old behavior with your help.

  1. Move the line you commented inside the other block, like this:
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover,
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] #sidebar {
    /*transition-delay: 0s !important;*/
    transition: all 300ms !important;
    min-width: var(--wide-tab-width) !important;
    max-width: var(--wide-tab-width) !important;
    z-index: 9998;
    margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;    
  }
  1. Increase both z-index like shown above

Here is my updated userChrome.css code, working as of version 133.0b7 (64-bit):

#TabsToolbar
{
    visibility: collapse;
}

#sidebar-header {
    display: none;
  }

  #sidebar-header {
    /* display: none; */
    visibility: collapse !important;
  }
  
  /* Hide splitter */
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] + #sidebar-splitter {
    display: none !important;
  }
  
  /* Shrink sidebar until hovered */
  :root {
    --thin-tab-width: 30px;
    --wide-tab-width: 300px;
  }
  #sidebar-box:not([sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]) {
    min-width: var(--wide-tab-width) !important;
    max-width: none !important;
  }
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
    overflow: hidden !important;
    position: relative !important;
    transition: all 300ms !important;
    /*transition: all 0ms 0s !important;*/
    min-width: var(--thin-tab-width) !important;
    max-width: var(--thin-tab-width) !important;
    z-index: 9999;
  }
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover,
  #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] #sidebar {
    /*transition-delay: 0s !important;*/
    transition: all 300ms !important;
    min-width: var(--wide-tab-width) !important;
    max-width: var(--wide-tab-width) !important;
    z-index: 9998;
    margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;    
  }
  /* #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover {
    margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
  } */

  #main-window #titlebar {
    overflow: hidden;
    transition: height 0.3s 0.3s !important;
  }
  /* Default state: Set initial height to enable animation */
  /* #main-window #titlebar { height: 3em !important; } */
  #main-window[uidensity="touch"] #titlebar { height: 3.35em !important; }
  #main-window[uidensity="compact"] #titlebar { height: 2.7em !important; }
  /* Hidden state: Hide native tabs strip */
  #main-window[titlepreface*="XXX"] #titlebar { height: 0 !important; }
  /* Hidden state: Fix z-index of active pinned tabs */
  #main-window[titlepreface*="XXX"] #tabbrowser-tabs { z-index: 0 !important; }

note that I don't necessarily know why or how that worked, so any improvement to future proof it is appreciated

@LeonardoBeleffi
Copy link

LeonardoBeleffi commented Nov 13, 2024

@Puncia I tried with your configuration but I still don't understand how everyone manages to have the working configuration with the following lines:

#TabsToolbar
{
    visibility: collapse;
}

If I put those lines in my configuration file I get the TabsToolbar to never appear, not even when I "ctrl + e".

In order to make that functionality work for me I have to delete thoose four line and add the following line at the end:

#main-window[titlepreface*="XXX"] #TabsToolbar { visibility: collapse; }

If somebody is able to explain me the reason, that would be really appreciated.
Thanks.

@Fr400
Copy link

Fr400 commented Nov 13, 2024

Hello, it is not working on Windows 11. Is there any fix?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment