mobile-config-firefox/chrome/navbar_tabs_oneliner.css

62 lines
2.2 KiB
CSS
Raw Normal View History

/*Make tabs and navbar appear side-by-side tabs on right */
/* IMPORTANT */
/*
Get window_control_placeholder_support.css
Window controls will be all wrong without it
urlbar_full_width.css is VERY MUCH recommended for Firefox 71+ because of new urlbar popup
*/
2018-11-26 02:56:26 +01:00
/* Modify these to change relative widths or default height */
#navigator-toolbox{
--uc-navigationbar-width: 40vw;
--uc-toolbar-height: 40px;
}
2018-10-21 17:44:14 +02: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 19:49:30 +01:00
:root[uidensity=compact] #urlbar-container.megabar{
--urlbar-container-height: var(--uc-toolbar-height) !important;
padding-block: 0 !important;
}
:root[uidensity=compact] #urlbar.megabar{
--urlbar-toolbar-height: var(--uc-toolbar-height) !important;
}
2018-11-29 19:49:30 +01:00
/* prevent urlbar overflow on narrow windows */
/* Dependent on how many items are in navigation toolbar ADJUST AS NEEDED */
@media screen and (max-width: 1100px){
2018-11-29 19:49:30 +01:00
#urlbar-container{ min-width:unset !important }
}
2018-10-21 17:44:14 +02: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-26 00:13:23 +01:00
.titlebar-placeholder[type="pre-tabs"],
.titlebar-spacer[type="pre-tabs"]{ display: none }
#navigator-toolbox > #nav-bar{
2018-11-26 02:54:06 +01:00
margin-right:calc(100vw - var(--uc-navigationbar-width));
margin-top: calc(0px - var(--uc-toolbar-height));
2018-10-21 17:44:14 +02:00
}
/* Override style set in window_control_placeholder_support.css */
#nav-bar{ border-right-width: 0px !important }
#nav-bar::after{ display:none !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; }
}
2018-10-21 17:44:14 +02:00
/* 1px margin on touch density causes tabs to be too high */
.tab-close-button{ margin-top: 0 !important }
2018-11-29 19:49:30 +01:00
2018-11-03 21:47:52 +01:00
/* Hide dropdown placeholder */
#urlbar-container:not(:hover) .urlbar-history-dropmarker{ margin-inline-start: -28px; }
2020-01-12 14:26:18 +01:00
/* Fix customization view */
#customization-panelWrapper > .panel-arrowbox > .panel-arrow{ margin-inline-end: initial !important; }