Waterfox - Tab Leiste ausblenden / mehrzeilige Lesezeichenleiste

Prisoner.o.Time

Admiral
Registriert
Mai 2010
Beiträge
9.914
Hallo zusammen,

ich hätte da mal ein Anliegen an die Community hier. Vielleicht habt ihr ja ne Idee / nen Tip wie ich oben genanntes erreiche.

Hab anfänglich versucht im Waterfox Forum bei Reddit Hilfestellung zu bekommen. Aber scheinbar sind dort alle genau so schlau wie ich.

https://www.reddit.com/r/waterfox/comments/lo4fez/hide_tab_bar_multi_row_bookmarks/

Was ich an der Stelle noch sagen kann, für das eine oder andere gab es früher mal ein Addon. Was in der Legacy Version von Waterfox auch teilweise noch funktioniert hat. Gleiches gilt für die standard "user.chrom.css" Datei.
Bei der neueren G3.1.0 Version bekomme ich dies jedoch nicht mehr zum laufen.

Im Anschluss noch den Text aus der user.chrom.css Datei welche ich getestet habe:

#TabsToolbar #window-controls {
display: none !important;
}

/*
To show the text of a bookmark, hover the bookmark
at least a quarter second (250 milliseconds).
Once shown on hover, they remain for 2 seconds
after hover ends before collapsing out again.
*/
toolbarbutton.bookmark-item .toolbarbutton-text {
visibility: collapse !important;
opacity: 0 !important;
transition: all 250ms 2s ease-in-out !important;
}
toolbarbutton.bookmark-item:hover .toolbarbutton-text {
visibility: visible !important;
opacity: 1 !important;
transition: all 250ms 250ms ease-in-out !important;
}

/* Makes bookmarks toolbar span multiple rows */

#PersonalToolbar{
--multirow-bmb-n-rows: 3; /* Control how many rows are shown before scrolling */
--multirow-bmb-row-margin: 2px; /* Control how much spacing is between rows */
max-height: none !important;
}

#PlacesToolbar > hbox{
display: block;
width: 100vw;
}

#PlacesToolbarItems{
display: flex;
flex-wrap: wrap;
/* --uc-bm-padding is defined in autohide_bookmarks_toolbar.css */
max-height: calc(var(--multirow-bmb-n-rows) * (5px + 1em + (2 * (var(--multirow-bmb-row-margin) + var(--uc-bm-padding,2px))))) !important;
overflow-y:auto;
scrollbar-color: var(--lwt-accent-color) var(--toolbar-bgcolor) ;
scrollbar-width: thin;
}

/* Hide the all-bookmarks button */
#PlacesChevron{ display: none }

/* Add some spacing between rows */
#PlacesToolbarItems > .bookmark-item{ margin: var(--multirow-bmb-row-margin) 2px !important; }

Vielen Dank schon mal im Vorraus.
 
Zuletzt bearbeitet:
Zurück
Oben