toolbars_below_content: make it able to drag the window from menubar

Dragging the window is still disabled when using only
autohide_menubar.css. But if you use both then dragging menubar should
work.
This commit is contained in:
MrOtherGuy
2022-03-19 08:34:48 +02:00
parent 0bc77cc515
commit 19c1452193
2 changed files with 9 additions and 2 deletions

View File

@@ -34,7 +34,13 @@ See the above repository for updates as well as full license text. */
/* Remove the next row if you want tabs to be the top-most row */
#titlebar{ -moz-box-ordinal-group: 2 }
#toolbar-menubar{ position: fixed; display: flex; width: 100vw; top: 0px; }
#toolbar-menubar{
position: fixed;
display: flex;
width: 100vw;
top: 0px;
-moz-window-dragging: drag;
}
/* Remove bottom border that won't do anything useful when at bottom of the window */
#navigator-toolbox{ border-bottom: none !important; }