zotero/scss/components/_selectItemsDialog.scss
Abe Jellinek d815476a14 fx115: Scaffold: Fix Tests listbox sizing
- Remove splitter for now - no longer works with flex, so we'll need to
  rethink it
- Borrow selectItemsDialog richlistbox sizing fix via mixin
2024-04-22 15:02:30 -04:00

46 lines
904 B
SCSS

#zotero-select-items-dialog {
display: flex;
min-width: 600px;
min-height: 450px;
}
#select-items-dialog {
padding: 2em;
#zotero-select-items-container {
display: flex;
flex-direction: column;
gap: 8px;
}
#zotero-collections-tree-container {
min-width: 200px;
min-height: 100%;
}
#zotero-items-pane-content {
min-height: 100%;
}
#search-toolbar {
display: flex;
flex-direction: row;
justify-content: flex-end;
}
#search-toolbar {
flex: 0 0 auto;
}
#collections-items-container {
flex: 1 1 auto;
margin-bottom: 8px;
}
}
// richlistbox elements are crazy and will expand beyond the window size
// unless all/most elements in the hierarchy that contain that
// richlistbox have a min-height: 0 set
.contain-richlistbox {
@include contain-richlistbox;
}