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:
parent
5d5370fab3
commit
d35ebf1943
1 changed files with 2 additions and 0 deletions
|
@ -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) }
|
||||
|
|
Loading…
Reference in a new issue