#tabstoolbar — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #tabstoolbar, aggregated by home.social.
-
@rl_dane Thanks!
It's just firefox with a no tabs plugin and then a custom userchrome css that collapses the tabbar and changes the background to white.
This is the full css:
```
#TabsToolbar {
visibility: collapse;
}menubar, toolbar, nav-bar, #TabsToolbar > * {
background-color: white !important;
font-family: "Iosevka Aile";
}
``` -
@EngelbertDejaco
Tippe in der Adresszeile about:support ein
Unter "Application Basics" gibt es nen Abschnitt "Profile Folder".
Erstelle dort einen Ordner "chrome". In diesem bearbeite "userChrome.css" oder erstelle sie neu, wenn es sie noch nicht gibt.Füge der Datei folgende Zeilen hinzu:
/* hides the native tabs */
#TabsToolbar {
visibility: collapse;
}setze unter about:config 'toolkit.legacyUserProfileCustomizations.stylesheets' auf true und starte Firefox neu.
-
@cnx I edited user chrome styles.
#TabsToolbar {
visibility: collapse;
}
#sidebar-header {
display: none;
} -
@pervognsen you have to enable `toolkit.legacyUserProfileCustomizations.stylesheets=true` in about:config, and put this in your userChrome.css:
```
#TabsToolbar {
visibility: collapse;
}
```there might be a way to get the minimize/maximize/close buttons back, but I gave up on that, I just use window manager keyboard shortcuts for those
-
#Mozilla released a Firefox Nightly test build with #VerticalTabs (https://tinyurl.com/22ne5n5x) but you know that there is already more than one add-on to make it work? I'm using vertical tabs since 4 years ago and to do so installed Tree Style Tab (https://tinyurl.com/y5gr4dyn)
Also has to disable horizontal tabs create or update the file chrome/userChrome.css located at your profile with
#TabsToolbar {
visibility: collapse;
}and add the setting "toolkit.legacyUserProfileCustomizations.stylesheets" with value true (use about:config)
Enjoy!
-
CW: CSS code
#TabsToolbar {
visibility: collapse !important;
}#sidebar-header {
visibility: collapse !important;
}if you know, you know. :3
-
In case y'all want it:
#TabsToolbar {
visibility: collapse;
}#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
display: none;
} -
So, I started to customize LibreWolf a little bit more. I don't have url bar now, until I press ctrl+L, and have no sidebar header. Yes, I only see the sidebar, and the website. I saw customization for hidden sidebar, so I can even make it more minimal. xD
Does this mean that LibreWolf is now my main browser, after using Brave for years?
Probably yes. Brave's ownership is similar to Mozilla, but while M spends time with politics, Brave spends time with alternate revenue streams(?), instead of making the browser better. Sorry, I don't understand crypto stuff.
Interestingly Microsoft could make a fairly good browser with Edge (don't hate me), with nice vertical tab option, collections and other good things. Sadly it's proprietary. But MS clearly loves open source guys!
#librewolf #browser #customization #minimalism #css
Oh, here is the CSS I used in userChrome.css
--------------------------
/* Hide hotizontal tabs */
#TabsToolbar { display: none; }
/* Hides sidebar header */
#sidebar-box #sidebar-header {
display: none !important;
}
/* hide navigation bar when it is not focused; use Ctrl+L to get focus */
#main-window:not([customizing]) #navigator-toolbox:not(:focus-within):not(:hover) {
margin-top: -45px;
}
#navigator-toolbox {
transition: 0.2s margin-top ease-out;
}