avoid scroll for long document titles, closes #3140

This commit is contained in:
j 2023-07-08 19:30:11 +05:30
commit 1175e5d5bf
2 changed files with 12 additions and 5 deletions

View file

@ -18,7 +18,10 @@ pandora.ui.uploadDocumentDialog = function(options, callback) {
$errorDialog,
$content = Ox.Element().css({margin: '16px'}),
$content = Ox.Element().css({
margin: '16px',
overflow: 'hidden'
}),
$text = $('<div>')
.html(Ox._('Uploading {0}', [files[0].name]))