zotero/scss/components/_mainWindow.scss
Tom Najdek b350613770
Some checks are pending
CI / Build, Upload, Test (push) Waiting to run
Fix progress bar ignores color scheme. Resolve #4589 (#4599)
2024-08-26 08:00:18 -04:00

41 lines
No EOL
853 B
SCSS

:is(panel):not(#autoscroller)::part(content) {
--panel-background: var(--material-toolbar);
}
#main-window {
min-width: max(var(--width-of-fixed-components) + $min-width-items-pane, $min-width-tabs-deck);
min-height: 300px;
}
#main-window.stacked {
min-height: calc(var(--height-of-fixed-components) + $min-height-items-pane + $height-toolbar);
}
#zotero-pane {
min-width: 0;
min-height: 0;
}
#zotero-pane-stack > hbox {
// Let window chrome, tabs, and toolbar shrink even when sidebars overflow
min-width: 0;
}
#browser, #zotero-pane-stack, #zotero-trees {
min-height: 0;
}
#zotero-pane-overlay {
background: rgba(0,0,0,.3);
}
#zotero-pane-progress-box {
background: var(--color-sidepane);
border-radius: 5px;
border: var(--color-panedivider);
height: 30px;
width: 300px;
}
#zotero-pane-progressmeter-container {
padding: 10px;
}