Add variable controlled drag-space

This commit is contained in:
MrOtherGuy 2018-11-26 03:56:26 +02:00
parent 2d768a9563
commit 032076d505

View file

@ -1,4 +1,4 @@
/* Modify these to change relative widths or default hegiht */
/* Modify these to change relative widths or default height */
#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; }
@ -11,11 +11,12 @@
#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);
padding-left: var(--window-drag-space-width);
}
/* 1px margin on touch density causes tabs to be too high */
.tab-close-button{ margin-top: 0 }
/* prevent urlbar overflow on narrow windows */
/* Dependent on how many items are in navigation toolbar ADJUST AS NEEDED */
@media screen and (max-width: 1000px){
#urlbar-container{ min-width:unset !important }
}