Add variable controlled drag-space

This commit is contained in:
MrOtherGuy
2018-11-26 03:54:06 +02:00
parent 31e7c0b597
commit 2d768a9563
2 changed files with 16 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
/* Modify these to change relative widths or default hegiht */
#navigator-toolbox{ --uc-navigationbar-width: 40vw; --uc-toolbar-height: 40px; }
#navigator-toolbox{ --uc-navigationbar-width: 40vw; --uc-toolbar-height: 40px; --window-drag-space-width: 20px}
/* Override for other densities */
:root[uidensity="compact"] > #navigator-toolbox{ --uc-toolbar-height: 32px; }
:root[uidensity="touch"] > #navigator-toolbox{ --uc-toolbar-height: 40px; }
@@ -8,13 +8,15 @@
/* This isn't useful when tabs start in the middle of the window */
.titlebar-placeholder[type="pre-tabs"],
.titlebar-spacer[type="pre-tabs"]{ display: none }
#nav-bar{margin-right:calc(100vw - var(--uc-navigationbar-width));
margin-top: calc(0px - var(--uc-toolbar-height))
#nav-bar{
margin-right:calc(100vw - var(--uc-navigationbar-width));
margin-top: calc(0px - var(--uc-toolbar-height));
padding-left: var(--window-drag-space-width: 20px);
}
/* 1px margin on touch density causes tabs to be too high */
.tab-close-button{ margin-top: 0 }
/* prevent urlbar overflow on narrow windows */
@media screen and (max-width: 1300px){
@media screen and (max-width: 1000px){
#urlbar-container{ min-width:unset !important }
}
/* Hide dropdown placeholder */