28 lines
No EOL
856 B
CSS
28 lines
No EOL
856 B
CSS
/* Makes menubar appear as overlay in the top left corner */
|
|
|
|
#toolbar-menubar{
|
|
position: fixed;
|
|
display: block;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: initial !important;
|
|
z-index: 10;
|
|
}
|
|
|
|
#toolbar-menubar[autohide="true"][inactive="true"]{ height: 0px !important; }
|
|
|
|
:root[tabsintitlebar][sizemode="maximized"] #toolbar-menubar{ top: 8px; }
|
|
|
|
#toolbar-menubar > .titlebar-buttonbox-container{ float: right }
|
|
#toolbar-menubar[inactive] > .titlebar-buttonbox-container{ display: none }
|
|
|
|
#main-menubar{ height: calc(var(--tab-min-height) + 4px); background-color: var(--toolbar-bgcolor); }
|
|
|
|
#menubar-items{ -moz-box-orient: horizontal !important; }
|
|
#menubar-items::after{
|
|
content: "";
|
|
display: -moz-box;
|
|
width: 30px;
|
|
height: calc(var(--tab-min-height) + 4px);
|
|
background-image: linear-gradient(to right, var(--toolbar-bgcolor) 30%, transparent);
|
|
} |