From eb890d187c09ea612224a76ee3d600c3b538abb7 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sat, 27 Nov 2021 21:55:43 +0100 Subject: [PATCH] userChrome/urlbar: hide bookmarks toolbar (MR 19) --- src/userChrome/urlbar.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/userChrome/urlbar.css b/src/userChrome/urlbar.css index 4624beb..16daad9 100644 --- a/src/userChrome/urlbar.css +++ b/src/userChrome/urlbar.css @@ -68,4 +68,13 @@ overflow-x: none !important; scrollbar-width: none; } + + /* Bookmarks toolbar. Firefox shows it for some reason when opening a + * private browsing window, even if it is not enabled in the normal + * window view. Hide it for mobile, it eats precious space and can't be + * organized properly on mobile anyway. Using the searchbar to filter + * through bookmarks is much more efficient. */ + #PersonalToolbar { + display: none; + } }