let uploader set a collection name for a multiple-file upload

This commit is contained in:
xenofem 2022-05-26 15:42:11 -04:00
parent 3125e1f4e7
commit 97f58bbbe3
5 changed files with 28 additions and 4 deletions

View file

@ -4,6 +4,7 @@
* landing: haven't entered upload password yet
* uploads_closed: uploading is currently unavailable
* no_files: no files are selected
* one_file: exactly one file is selected
* selecting: upload hasn't started yet
* uploading: upload is in progress
* completed: upload is done
@ -43,6 +44,8 @@ body.landing #upload_controls { display: none; }
body.selecting #upload_settings { display: revert; }
body.no_files #upload_settings { display: none; }
body.one_file #collection_name { display: none; }
body.selecting #download_code_container { display: none; }
#progress_container { display: none; }

View file

@ -273,6 +273,7 @@ button:disabled, input:disabled + .fake_button, input[type="submit"]:disabled {
#lifetime_container {
margin-top: 10px;
margin-bottom: 10px;
}
input[type="text"], input[type="password"] {