userChrome/urlbar: hide bookmarks toolbar (MR 19)

This commit is contained in:
Oliver Smith 2021-11-27 21:55:43 +01:00
parent 41e3f583ea
commit eb890d187c
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -68,4 +68,13 @@
overflow-x: none !important; overflow-x: none !important;
scrollbar-width: none; 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;
}
} }