From 8d17fb1d6427f2ca1a3ad49275ba86aecad1d937 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Tue, 8 Nov 2022 05:35:16 +0200 Subject: [PATCH] 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. --- chrome/multi-row_bookmarks.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/chrome/multi-row_bookmarks.css b/chrome/multi-row_bookmarks.css index 1b08ea5..c624817 100755 --- a/chrome/multi-row_bookmarks.css +++ b/chrome/multi-row_bookmarks.css @@ -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 */ +}