63 lines
2.5 KiB
CSS
63 lines
2.5 KiB
CSS
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/navbar_tabs_oneliner.css made available under Mozilla Public License v. 2.0
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
/* Make tabs and navbar appear side-by-side tabs on right */
|
|
|
|
/* Use page_action_buttons_on_hover.css to hide page-action-buttons to save more space for the address */
|
|
|
|
/*
|
|
urlbar_full_width.css is VERY MUCH recommended for Firefox 71+ because of new urlbar popup
|
|
*/
|
|
|
|
/* Modify these to change relative widths or default height */
|
|
#navigator-toolbox{
|
|
--uc-navigationbar-width: 40vw;
|
|
--uc-toolbar-height: 40px;
|
|
}
|
|
/* Override for other densities */
|
|
:root[uidensity="compact"] #navigator-toolbox{ --uc-toolbar-height: 32px; }
|
|
:root[uidensity="touch"] #navigator-toolbox{ --uc-toolbar-height: 40px; }
|
|
|
|
:root[uidensity=compact] #urlbar-container{
|
|
--urlbar-container-height: var(--uc-toolbar-height) !important;
|
|
padding-block: 0 !important;
|
|
}
|
|
:root[uidensity=compact] #urlbar{
|
|
--urlbar-toolbar-height: var(--uc-toolbar-height) !important;
|
|
}
|
|
|
|
/* prevent urlbar overflow on narrow windows */
|
|
/* Dependent on how many items are in navigation toolbar ADJUST AS NEEDED */
|
|
@media screen and (max-width: 1400px){
|
|
#urlbar-container{ min-width:unset !important }
|
|
}
|
|
|
|
#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 */
|
|
.titlebar-placeholder[type="pre-tabs"],
|
|
.titlebar-spacer[type="pre-tabs"]{ display: none }
|
|
|
|
#navigator-toolbox > #nav-bar{
|
|
margin-right:calc(100vw - var(--uc-navigationbar-width));
|
|
margin-top: calc(0px - var(--uc-toolbar-height));
|
|
}
|
|
|
|
/* Window drag space */
|
|
:root[tabsintitlebar="true"] #nav-bar{ padding-left: 24px !important }
|
|
|
|
/* Rules specific to window controls on right layout */
|
|
@supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled"){
|
|
.titlebar-buttonbox-container{ position: fixed; display: block; left: 0px; z-index: 3; }
|
|
:root[tabsintitlebar="true"] #nav-bar{ padding-left: 96px !important; padding-right: 0px !important; }
|
|
}
|
|
|
|
/* 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; }
|
|
|
|
/* Fix customization view */
|
|
#customization-panelWrapper > .panel-arrowbox > .panel-arrow{ margin-inline-end: initial !important; }
|