multi-row bookmarks: make items in the toolbar visible

This is just in case that Firefox logic would hide them on some
condition even if they now can fit the toolbar.
This commit is contained in:
MrOtherGuy 2022-11-08 05:35:16 +02:00
parent 714cd2eab5
commit 8d17fb1d64

View file

@ -31,4 +31,7 @@ See the above repository for updates as well as full license text. */
#PlacesChevron{ display: none }
/* Add some spacing between rows */
#PlacesToolbarItems > .bookmark-item{ margin: var(--multirow-bmb-row-margin) 3px !important; }
#PlacesToolbarItems > .bookmark-item{
margin: var(--multirow-bmb-row-margin) 3px !important;
visibility: visible !important; /* Just in case they would be hidden for some reason */
}