zotero/scss/elements/_advancedSearchPane.scss
Abe Jellinek 00527332c4 Move Advanced Search and saved search editing to the main window (#5658)
---------

Co-authored-by: Dan Stillman <dstillman@zotero.org>
2026-06-12 15:21:59 -04:00

54 lines
815 B
SCSS

advanced-search-deck {
flex-direction: column;
> advanced-search-pane:not(.deck-selected) {
display: none;
}
}
advanced-search-pane {
@include inactive-opacity;
flex-direction: column;
// Inline padding is further down the tree so focus rings work with overflow: auto
padding-block: 8px;
gap: 8px;
background: var(--material-toolbar);
.saved-search-name-row {
align-items: center;
}
.advanced-search-buttons {
padding-inline: 8px;
gap: 8px;
button {
min-width: 100px;
}
}
&[type="temporary"] {
.saved-search-name-row {
display: none;
}
.advanced-search-buttons {
.cancel-button {
display: none;
}
}
}
&[type="saved"] {
.advanced-search-buttons {
.search-button {
display: none;
}
.clear-button {
display: none;
}
}
}
}