hide .bookmark-item elements in fullscreen mode. Fixes #154

For some reason individual .bookmark items in the toolbar are being
rendered in Firefox 96, even though the toolbar itself is hidden. This
patch applies a simple visibility:hidden to all of them.
This commit is contained in:
MrOtherGuy 2021-11-18 09:51:59 +02:00
parent 5d5370fab3
commit d35ebf1943

View file

@ -65,6 +65,8 @@ See the above repository for updates as well as full license text. */
visibility: hidden !important
}
:root[sizemode="fullscreen"] #PersonalToolbar .bookmark-item{ visibility: hidden !important; }
/* The invisible toolbox will overlap sidebar so we'll work around that here */
#navigator-toolbox{ pointer-events: none; border-bottom: none !important; }
#PersonalToolbar{ border-bottom: 1px solid var(--chrome-content-separator-color) }