You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using custom userChrome.css in Firefox to remove the tabs bar as mentioned in the Sidebery's Wiki and hide the minimize, maximize, and close buttons.
Current userChrome.css config 👇🏻
/* 1. Import MrOtherGuy/firefox-csshacks lib files *//* Hide tabs bar */@importurl(chrome/hide_tabs_toolbar.css);
@importurl(chrome/hide_tabs_toolbar_osx.css);
@importurl(chrome/window_control_placeholder_support.css);
/* 2. Apply custom modifications after imports *//* Decrease size of the sidebar header */#sidebar-header {
font-size:1.2em!important;
padding:2px6px2px3px!important;
}
#sidebar-header#sidebar-close {
padding:3px!important;
}
#sidebar-header#sidebar-close .toolbarbutton-icon {
width:14px!important;
height:14px!important;
opacity:0.6!important;
}
/* Hide toolbar buttons for mininmize, maximize and close */toolbarbutton.titlebar-button {
display: none !important;
}
/* Extend nav bar to fill hidden titlebar buttons space on right side */#nav-bar {
border-right-width:0!important;
}
Firefox UI for above config 👇🏻
How to
Make the sidebar-box extend to the full height of the browser window.
Position the navigator-toolbox to start after the sidebar-box + sidebar-splitter width.
Ensure the setup is responsive. When the sidebar width changes or is hidden, the navigator-toolbox should automatically adjust its position and size.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm using custom
userChrome.css
in Firefox to remove the tabs bar as mentioned in the Sidebery's Wiki and hide the minimize, maximize, and close buttons.Current
userChrome.css
config 👇🏻Firefox UI for above config 👇🏻
How to
Expected Firefox UI 👇🏻
Firefox version: 115.7.0
Sidebery version: 5.2.0
Beta Was this translation helpful? Give feedback.
All reactions