Remove Windows specific extra titlbar paddings from codebase

Firefox 101 doesn't need those anymore :)
This commit is contained in:
MrOtherGuy
2022-06-01 00:19:19 +03:00
parent 4daf1969be
commit 6b242379ec
17 changed files with 10 additions and 136 deletions
@@ -20,18 +20,18 @@ See the above repository for updates as well as full license text. */
#navigator-toolbox{
-moz-window-dragging: drag;
padding-top: calc(var(--uc-menubar-height) + var(--uc-titlebar-padding, 0px)) !important;
padding-top: var(--uc-menubar-height) !important;
}
/* Remove window dragging from notification boxes */
#tab-notification-deck,
.global-notificationbox{
-moz-window-dragging: no-drag;
}
:root[sizemode="fullscreen"] #navigator-toolbox{ padding-top: 0px !important; }
#toolbar-menubar{
position: fixed;
display: flex;
top: var(--uc-titlebar-padding,0px);
top: 0px;
height: var(--uc-menubar-height);
width: 100%;
overflow: hidden;