2018-11-26 01:56:26 +00:00
|
|
|
/* Modify these to change relative widths or default height */
|
2018-11-26 01:54:06 +00:00
|
|
|
#navigator-toolbox{ --uc-navigationbar-width: 40vw; --uc-toolbar-height: 40px; --window-drag-space-width: 20px}
|
2018-10-21 15:44:14 +00:00
|
|
|
/* Override for other densities */
|
|
|
|
:root[uidensity="compact"] > #navigator-toolbox{ --uc-toolbar-height: 32px; }
|
|
|
|
:root[uidensity="touch"] > #navigator-toolbox{ --uc-toolbar-height: 40px; }
|
2018-11-29 18:49:30 +00:00
|
|
|
|
|
|
|
/* 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 }
|
|
|
|
}
|
|
|
|
|
2018-10-21 15:44:14 +00:00
|
|
|
#TabsToolbar{ margin-left: var(--uc-navigationbar-width); }
|
|
|
|
#tabbrowser-tabs{ --tab-min-height: var(--uc-toolbar-height) !important; }
|
|
|
|
/* This isn't useful when tabs start in the middle of the window */
|
2018-11-25 23:13:23 +00:00
|
|
|
.titlebar-placeholder[type="pre-tabs"],
|
|
|
|
.titlebar-spacer[type="pre-tabs"]{ display: none }
|
2018-11-26 01:54:06 +00:00
|
|
|
#nav-bar{
|
|
|
|
margin-right:calc(100vw - var(--uc-navigationbar-width));
|
|
|
|
margin-top: calc(0px - var(--uc-toolbar-height));
|
2018-11-26 01:56:26 +00:00
|
|
|
padding-left: var(--window-drag-space-width);
|
2018-10-21 15:44:14 +00:00
|
|
|
}
|
|
|
|
/* 1px margin on touch density causes tabs to be too high */
|
|
|
|
.tab-close-button{ margin-top: 0 }
|
2018-11-29 18:49:30 +00:00
|
|
|
|
2018-11-03 20:47:52 +00:00
|
|
|
/* Hide dropdown placeholder */
|
|
|
|
#urlbar-container:not(:hover) .urlbar-history-dropmarker{margin-inline-start: -28px;}
|