mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-10 03:40:14 +00:00
52 lines
No EOL
1.9 KiB
CSS
52 lines
No EOL
1.9 KiB
CSS
/* Modify these to change relative widths or default height */
|
|
#navigator-toolbox{
|
|
--uc-navigationbar-width: 40vw;
|
|
--uc-toolbar-height: 40px;
|
|
--window-drag-space-width: 20px;
|
|
--uc-window-control-width: 138px;
|
|
}
|
|
/* Override for other densities */
|
|
:root[uidensity="compact"] > #navigator-toolbox{ --uc-toolbar-height: 32px;}
|
|
:root[uidensity="touch"] > #navigator-toolbox{ --uc-toolbar-height: 40px; }
|
|
|
|
/* prevent urlbar overflow on narrow windows */
|
|
/* Dependent on how many items are in navigation toolbar and tabs-/nav-bar ratio - ADJUST AS NEEDED */
|
|
@media screen and (max-width: 1600px){
|
|
#urlbar-container{ min-width:unset !important }
|
|
}
|
|
|
|
#toolbar-menubar{ height:initial !important; }
|
|
#toolbar-menubar[inactive] > #menubar-items{ opacity: 0; pointer-events: none; }
|
|
#toolbar-menubar[inactive]{ margin-bottom: calc(0px - var(--uc-toolbar-height)) }
|
|
|
|
#TabsToolbar > .titlebar-buttonbox-container,
|
|
#TabsToolbar > .toolbar-items > spacer,
|
|
.titlebar-spacer[type="post-tabs"]{
|
|
display: none;
|
|
}
|
|
#TabsToolbar{
|
|
margin-right: var(--uc-navigationbar-width);
|
|
}
|
|
#toolbar-menubar[autohide="true"] > .titlebar-buttonbox-container,
|
|
#tabbrowser-tabs,
|
|
.tabbrowser-tab[pinned]{
|
|
height: var(--uc-toolbar-height) !important;
|
|
min-height: var(--uc-toolbar-height) !important;
|
|
}
|
|
#nav-bar{
|
|
margin-left: calc(100vw - var(--uc-navigationbar-width));
|
|
margin-top: calc(0px - var(--uc-toolbar-height));
|
|
padding-left: 0px !important;
|
|
}
|
|
|
|
/* Space to drag the window on both sides of navbar */
|
|
:root[tabsintitlebar="true"]:not([inFullscreen]) #nav-bar{
|
|
padding-right: calc(var(--uc-window-control-width) + var(--window-drag-space-width,0px));
|
|
padding-left: var(--window-drag-space-width,0px)
|
|
}
|
|
|
|
/* 1px margin on touch density causes tabs to be too high */
|
|
.tab-close-button{ margin-top: 0 !important }
|
|
|
|
/* Hide dropdown placeholder */
|
|
#urlbar-container:not(:hover) .urlbar-history-dropmarker{margin-inline-start: -28px;} |