mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-14 16:23:53 +02:00
44 lines
No EOL
915 B
CSS
44 lines
No EOL
915 B
CSS
#browser,
|
|
#appcontent,
|
|
#tabbrowser-tabpanels {
|
|
background: transparent !important;
|
|
}
|
|
|
|
#navigator-toolbox {
|
|
/* see issue #426 */
|
|
background: var(--zen-navigator-toolbox-background, transparent) !important;
|
|
--inactive-titlebar-opacity: 1;
|
|
}
|
|
|
|
:root:not([inDOMFullscreen='true']) #tabbrowser-tabpanels {
|
|
padding-right: var(--zen-element-separation);
|
|
padding-bottom: var(--zen-element-separation);
|
|
|
|
#browser:has(#navigator-toolbox[zen-right-side="true"]) & {
|
|
padding-right: 0;
|
|
padding-left: var(--zen-element-separation);
|
|
}
|
|
}
|
|
|
|
#browser {
|
|
width: 100%;
|
|
}
|
|
|
|
:not([inDOMFullscreen='true']) #appcontent {
|
|
overflow: hidden;
|
|
}
|
|
|
|
:not([inDOMFullscreen='true']) #appcontent,
|
|
#sidebar-box {
|
|
/** Sidebar is already hidden in full screen mode */
|
|
border: none;
|
|
}
|
|
|
|
#zen-main-app-wrapper {
|
|
background: var(--zen-main-browser-background);
|
|
}
|
|
|
|
#tabbrowser-tabbox {
|
|
display: flex;
|
|
flex-direction: row;
|
|
} |