2024-03-31 10:32:03 +00:00
|
|
|
#zotero-select-items-dialog {
|
|
|
|
display: flex;
|
|
|
|
min-width: 600px;
|
|
|
|
min-height: 450px;
|
|
|
|
}
|
|
|
|
|
2024-01-12 13:03:30 +00:00
|
|
|
#select-items-dialog {
|
|
|
|
padding: 2em;
|
|
|
|
|
|
|
|
#zotero-select-items-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#zotero-collections-tree-container {
|
|
|
|
min-width: 200px;
|
2024-02-01 19:39:53 +00:00
|
|
|
min-height: 100%;
|
2024-01-12 13:03:30 +00:00
|
|
|
}
|
|
|
|
|
2024-02-01 19:39:53 +00:00
|
|
|
#zotero-items-pane-content {
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
2024-01-12 13:03:30 +00:00
|
|
|
#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;
|
|
|
|
}
|
2024-04-16 08:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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 {
|
2024-04-22 19:02:18 +00:00
|
|
|
@include contain-richlistbox;
|
|
|
|
}
|