zotero/scss/elements/_duplicatesMergePane.scss

44 lines
951 B
SCSS
Raw Normal View History

2024-01-30 10:43:16 +00:00
duplicates-merge-pane {
2024-05-10 12:23:26 +00:00
&, #zotero-duplicates-merge-version-select, #zotero-duplicates-merge-item-box-container {
display: flex;
flex-direction: column;
gap: 8px;
}
padding-top: 9px;
2024-01-30 10:43:16 +00:00
2024-05-10 12:23:26 +00:00
> groupbox {
// Override default margin/padding that breaks our styles here
margin: 0;
padding: 0;
padding-inline: 8px;
min-height: 0;
2024-05-10 12:23:26 +00:00
> :is(description, label, button) {
margin: 0;
}
2024-01-30 10:43:16 +00:00
}
2024-05-10 12:23:26 +00:00
#zotero-duplicates-merge-field-select {
margin-bottom: 9px;
2024-01-30 10:43:16 +00:00
}
#zotero-duplicates-merge-item-box-container {
2024-05-10 12:23:26 +00:00
flex: 1;
padding-inline: 8px;
overflow-y: scroll;
border-top: var(--material-border-quinary);
collapsible-section > .head {
display: none;
}
2024-01-30 10:43:16 +00:00
}
/* Show duplicates date list item as selected even when not focused
(default behavior on other platforms) */
#zotero-duplicates-merge-original-date:not(:focus) > richlistitem[selected="true"] {
background-color: -moz-cellhighlight;
color: -moz-cellhighlighttext;
}
}