From 640514e2ec0668b7682b92287bca7261ef781f57 Mon Sep 17 00:00:00 2001 From: Olusesan Ameye Date: Sun, 7 Aug 2022 00:20:52 -0400 Subject: [PATCH] Removed initial animation & centered progress label --- www/application/views/jobs/uploads/upload_files.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/www/application/views/jobs/uploads/upload_files.php b/www/application/views/jobs/uploads/upload_files.php index c1a41c25..3fa257a2 100644 --- a/www/application/views/jobs/uploads/upload_files.php +++ b/www/application/views/jobs/uploads/upload_files.php @@ -48,12 +48,13 @@ html { background:#0866dc; background: rgb(8,102,220); background: rgba(8,102,220,.75); + text-align: center; } /*/////////////////////////////////////////////////// // Animation \\ ///////////////////////////////////////////////////*/ -@-webkit-keyframes slideIn { +/*@-webkit-keyframes slideIn { 0% { width: 0; } 25% { width:100%; } 100% { width: normal; } @@ -83,7 +84,7 @@ html { -moz-animation: slideIn 2s; -o-animation: slideIn 2s; animation: slideIn 2s; -} +}*/
@@ -217,7 +218,7 @@ function fileToUploadChanged(e) { $('#fileToUploadList').append('
Size limit exceeded: ' + fileList[i].name + ' - ' + humanFileSize(fileList[i].size) + ' (' + fileList[i].type + ')'); } else { $('#fileToUploadList').append('
' + fileList[i].name + ' - ' + humanFileSize(fileList[i].size) + ' (' + fileList[i].type + ') '); - $('#fileToUploadList').append('
'); + $('#fileToUploadList').append('
'); } } }