mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
18 lines
No EOL
1.1 KiB
CSS
18 lines
No EOL
1.1 KiB
CSS
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/toggle_tabs_toolbar_with_alt.css made available under Mozilla Public License v. 2.0
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
/* Show tabs toolbar with Alt-key. Menubar must be disabled for this to work */
|
|
|
|
#titlebar { -moz-appearance: none !important }
|
|
:root[tabsintitlebar][sizemode="maximized"]{ padding-top: 8px !important; }
|
|
#titlebar:not(:hover) > #toolbar-menubar[autohide="true"][inactive] + #TabsToolbar { visibility: collapse }
|
|
|
|
/* Behavior 1 - Alt-key toggles menubar as normal */
|
|
#titlebar:hover > #toolbar-menubar[autohide="true"]{ height: calc(var(--tab-min-height) + var(--space-above-tabbar) - var(--tabs-navbar-shadow-size)) !important; }
|
|
|
|
/* Behavior 2 - Alt-key only shows tabs toolbar */
|
|
/* To show window controls, hit Alt again while cursor is over tabs toolbar */
|
|
/*
|
|
#toolbar-menubar[autohide]:not([inactive]),
|
|
#toolbar-menubar[autohide="true"]:not([inactive]) + #TabsToolbar > .titlebar-buttonbox-container{ visibility: collapse !important }
|
|
*/ |