fenix-fox/chrome/vertical_menubar.css
MrOtherGuy d64e9e129e add temporary dummy variables to support for window frame color
In 96 the old --lwt-accent-color is renamed to --lwt-frame so add some
compatibility rules for now.
2021-11-21 08:03:05 +02:00

59 lines
No EOL
2 KiB
CSS

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/vertical_menubar.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* Makes menubar appear vertically on the right side of the window */
/* The first element in the menubar is used to "toggle" the file-menu & friends */
/* So, if you want the menu items to be toggleable, just move one button to be before menubar items in the toolbar. If all buttons come after menubar items, then none of those will trigger menubar items. */
@-moz-document url(chrome://browser/content/browser.xhtml){
/* Dummy variable to support versions 94-96, can be removed when 96 lands */
:root{ --lwt-frame: var(--lwt-accent-color) }
:root:not([customizing]) #titlebar{
position: fixed;
display: block;
-moz-appearance: none !important;
right: 0px;
height: 100vh;
width: 30px;
}
:root:not([customizing]) #navigator-toolbox{ margin-top: var(--tab-min-height) }
#TabsToolbar:not([customizing]){
position: fixed;
display: block;
top: 0px;
left: 0px;
width: 100vw;
padding-left: 30px !important;
}
#TabsToolbar > .toolbar-items{ max-width: calc(100vw - 138px) }
#TabsToolbar > .titlebar-buttonbox-container{
display: block !important;
float: right !important;
}
#toolbar-menubar:not([customizing]){
margin-top: 40px;
width: 30px;
-moz-box-orient: vertical;
-moz-box-flex: 1;
}
#toolbar-menubar > .titlebar-buttonbox-container,#toolbar-menubar > spacer{ display: none !important; }
#toolbar-menubar > #menubar-items{ visibility: collapse }
#toolbar-menubar > .toolbarbutton-1:first-child:hover + #menubar-items,#toolbar-menubar > #menubar-items:hover{ visibility: visible }
#toolbar-menubar:not([customizing]) #main-menubar{
-moz-box-orient: vertical;
margin-left: -60px;
background-color: var(--lwt-frame)
}
:root:not([inDOMFullscreen]) > #content-deck,:root:not([inDOMFullscreen]) #browser{ margin-right: 30px }
}