Removed initial animation & centered progress label

This commit is contained in:
2022-08-07 00:20:52 -04:00
parent 4e136c1186
commit 640514e2ec
@@ -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;
}
}*/
</style>
<div class="card-toolbar">
<!--begin::Toolbar-->
@@ -217,7 +218,7 @@ function fileToUploadChanged(e) {
$('#fileToUploadList').append('<br>Size limit exceeded: <span style="color:red;"><b>' + fileList[i].name + '</b> - ' + humanFileSize(fileList[i].size) + ' (' + fileList[i].type + ')</span>');
} else {
$('#fileToUploadList').append('<br><b>' + fileList[i].name + '</b> - ' + humanFileSize(fileList[i].size) + ' (' + fileList[i].type + ') <span class="loading-prep" id="prog'+i+'"></span>');
$('#fileToUploadList').append('<div class="skillBarContainer"><div id="file-progress-bar-'+i+'" class="skillBarValue value-0"></div></div>');
$('#fileToUploadList').append('<div id="file-progress-bar-container-'+i+'" class="skillBarContainer"><div id="file-progress-bar-'+i+'" class="skillBarValue value-0"></div></div>');
}
}
}