Fix merge pane overflow behavior

The item box CE can't be the scroll container, so it needs a wrapper element.

Fixes #3233
This commit is contained in:
Abe Jellinek 2023-07-28 15:05:34 -04:00
parent 7036073ed1
commit cbece42fb9
2 changed files with 5 additions and 8 deletions

View file

@ -1114,7 +1114,7 @@
</groupbox>
<!-- Duplicate merging -->
<vbox id="zotero-duplicates-merge-pane" flex="1">
<vbox id="zotero-duplicates-merge-pane">
<groupbox>
<button id="zotero-duplicates-merge-button" oncommand="Zotero_Duplicates_Pane.merge()"/>
</groupbox>
@ -1128,7 +1128,9 @@
<groupbox flex="1">
<description id="zotero-duplicates-merge-field-select">&zotero.duplicatesMerge.fieldSelect;</description>
<item-box id="zotero-duplicates-merge-item-box" flex="1"/>
<vbox id="zotero-duplicates-merge-item-box-container" flex="1">
<item-box id="zotero-duplicates-merge-item-box" flex="1"/>
</vbox>
</groupbox>
</vbox>
</deck>

View file

@ -76,15 +76,10 @@
margin: 8px 0 0 0;
}
#zotero-duplicates-merge-item-box {
#zotero-duplicates-merge-item-box-container {
overflow-y: scroll;
}
#zotero-duplicates-merge-item-box row
{
min-height: 20px;
}
#zotero-feed-item-toggleRead-button {
overflow: hidden;
white-space: nowrap;