Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Learn More

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

  • 1 odpověď
  • 1 má tento problém
  • 17 zobrazení
  • Poslední odpověď od 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.

Všechny odpovědi (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.