mobile-config-firefox/chrome/hide_tabs_toolbar.css

39 lines
982 B
CSS
Raw Normal View History

2018-12-13 04:42:11 +01:00
/* Hide tabs toolbar Fx65+ */
/* IMPORTANT */
/*
Get window_control_placeholder_support.css
Window controls will be all wrong without it
*/
2018-12-13 04:42:11 +01:00
:root{ --uc-toolbar-height: 32px; }
:root:not([uidensity="compact"]){--uc-toolbar-height: 38px}
2019-05-10 04:24:19 +02:00
#TabsToolbar{ visibility: collapse !important }
2018-12-13 04:42:11 +01:00
:root:not([inFullscreen]) #nav-bar{
margin-top: calc(0px - var(--uc-toolbar-height));
}
2018-12-13 04:42:11 +01:00
#toolbar-menubar{
min-height:unset !important;
height:var(--uc-toolbar-height) !important;
position: relative;
}
2018-12-13 15:44:28 +01:00
#main-menubar{
-moz-box-flex: 1;
2019-05-10 04:24:19 +02:00
background-color: var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor);
2018-12-13 15:44:28 +01:00
background-clip: padding-box;
border-right: 30px solid transparent;
2019-05-10 04:24:19 +02:00
border-image: linear-gradient(to left, transparent, var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor) 30px) 20 / 30px
2018-12-13 15:44:28 +01:00
}
2018-12-13 04:42:11 +01:00
#toolbar-menubar:not([inactive]){ z-index: 2 }
#toolbar-menubar[inactive] > #menubar-items {
opacity: 0;
pointer-events: none;
margin-left: var(--uc-window-drag-space-width,0px)
2019-05-10 04:24:19 +02:00
}