Skip to content

Commit

Permalink
ELEMENTS-1673:BACKPORT: fix reflow issue in export dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
alokhyland committed Sep 25, 2023
1 parent a8c713a commit 02721f0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/actions/nuxeo-export-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ import '../nuxeo-button-styles.js';
a:hover {
color: var(--nuxeo-link-hover-color, #0066ff);
}
.container {
overflow: auto;
}
</style>
<dom-if if="[[_isAvailable(document)]]">
Expand All @@ -76,7 +80,7 @@ import '../nuxeo-button-styles.js';
</template>
</dom-if>
<nuxeo-dialog id="dialog" with-backdrop>
<nuxeo-dialog id="dialog" with-backdrop class="container">
<h2>[[i18n('exportButton.dialog.heading')]]</h2>
<dom-repeat items="[[_filterRenditions(document, i18n)]]">
Expand Down

0 comments on commit 02721f0

Please sign in to comment.