When many files are selected in the folder contents upload widget, the file list (.previews) grows unbounded, pushing the "Upload" button below the viewport. There is no way to reach it without scaling down the browser.
The .popover-content form has max-height: 500px; overflow-y: auto, but the upload content is not inside a <form> — it's in a <div class="uploadify-me">, so the scroll constraint doesn't apply.
Fix: Add max-height and overflow-y: auto to .previews inside the upload popover, so the file list scrolls while the Upload button stays visible.
Files:
src/pat/upload/upload.scss — .upload-queue .previews
src/pat/structure/structure.scss — .popover.upload
When many files are selected in the folder contents upload widget, the file list (
.previews) grows unbounded, pushing the "Upload" button below the viewport. There is no way to reach it without scaling down the browser.The
.popover-content formhasmax-height: 500px; overflow-y: auto, but the upload content is not inside a<form>— it's in a<div class="uploadify-me">, so the scroll constraint doesn't apply.Fix: Add
max-heightandoverflow-y: autoto.previewsinside the upload popover, so the file list scrolls while the Upload button stays visible.Files:
src/pat/upload/upload.scss—.upload-queue .previewssrc/pat/structure/structure.scss—.popover.upload