Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

Multirow bookmark toolbar won't display all bookmarks in it.

  • 1 risposta
  • 1 ha questo problema
  • 19 visualizzazioni
  • Ultima risposta di webnick

more options

Why won't my multirow bookmarks toolbar display all of the bookmarks in it? No matter what editing I've done to the userChrome.css file in my profile, the toolbar is either 2 or 3 rows and simply refuses to populate the 3d row to any extent - and it should be about 5 rows long. Here is the .css file:

  1. PersonalToolbar{
 --multirow-bmb-n-rows: 5; /* Control how many rows are shown before scrolling */
 --multirow-bmb-row-margin: 4px; /* Control how much spacing is between rows */
 max-height: none !important;

}

  1. PlacesToolbar > hbox{
 display: block;
 width: 100vw;

}

  1. PlacesToolbarItems{
 display: flex;
 flex-wrap: wrap;
 /* --uc-bm-padding is defined in autohide_bookmarks_toolbar.css */
 max-height: calc(var(--multirow-bmb-n-rows) * (4px + 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;

}

This should be doable. Can someone please help me fix this? Thanks.

Why won't my multirow bookmarks toolbar display all of the bookmarks in it? No matter what editing I've done to the userChrome.css file in my profile, the toolbar is either 2 or 3 rows and simply refuses to populate the 3d row to any extent - and it should be about 5 rows long. Here is the .css file: #PersonalToolbar{ --multirow-bmb-n-rows: 5; /* Control how many rows are shown before scrolling */ --multirow-bmb-row-margin: 4px; /* 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) * (4px + 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; } This should be doable. Can someone please help me fix this? Thanks.

Tutte le risposte (1)

more options

Found at least a partial answer on my own: Separators. By eliminating Separators I gained a larger display of bookmarks and bookmark rows. I don't know why this would be and would like to know. But at least I now have 4 rows instead of 3 and dozens more bookmarks displaying.