- Firefox-Version
- 76.0.1
- Betriebssystem
- Win 10
Hallo
Meine mehrzeilige Lesezeichensymbolleiste funktioniert nicht mehr korrekt, es wird nur ein Teil angezeigt, nicht alle Lesezeichen (siehe Screens).
Ich habe bereits ein neues Profil erstellt und auch "toolkit.legacyUserProfileCustomizations.stylesheets" ist auf True.
Ich habe mal die places.sqlite gelöscht, FF neu geöffnet und er zeigt alle Lesezeichen an aber wenn ich FF erneut schliesse und ölffne, werden wieder nicht alle angezeigt.
Kann jemand von euch freundlicher Weise helfen?
Folgenden Code nutze ich:
/* Makes bookmarks toolbar span multiple rows */
#PersonalToolbar{
--multirow-bmb-n-rows: 50; /* Control how many rows are shown before scrolling */
--multirow-bmb-row-margin: 1px; /* Control how much spacing is between rows */
max-height: none !important;
}
/* Padding between bookmark items */
toolbarbutton.bookmark-item:not(.subviewbutton) {
padding: 1px !important;
}
#PlacesToolbar > hbox{
display: block;
width: 100vw;
}
#PlacesToolbarItems{
max-height:flex!important;
display: flex!important;
flex-wrap: wrap!important;
overflow-x: visible!important;
overflow-y: auto!important;
}
/* Add some spacing between rows */
#PlacesToolbarItems > .bookmark-item{
margin: var(--multirow-bmb-row-margin) 3px !important;
}