loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Move dropzone progress bar to bottom to show filename when uploading (#26492)

1. Make the "filename" visible
2. Avoiding UI flicker when the uploading is completing

authored by

wxiaoguang and committed by
GitHub
253737eb ed1be4ca

+6
+6
web_src/css/features/dropzone.css
··· 51 51 .dropzone .dz-preview:hover .dz-image img { 52 52 filter: opacity(0.5) !important; 53 53 } 54 + 55 + .ui .field .dropzone .dz-preview .dz-progress { 56 + /* by default the progress-bar is vertically centered (top: 50%), it's better to put it after the "details (size, filename)", 57 + then the layout from top to bottom is: size, filename, progress */ 58 + top: 7em; 59 + }