/*Dropzone field*/ #dropzone{ width: 400px; height: 150px; border: 1px solid black; text-align: center; display: table; } /*Dropzone description text*/ #dropzone p{ display: table-cell; vertical-align:middle; font-size: 16pt; color: grey; } /* wraps the upload queue table*/ #filelist-wrapper{ height: 120px; overflow-y: auto; overflow-x: hidden; margin-top: 10px; } #filelist { width: 400px; border-collapse: collapse; } #filelist th{ border-bottom: 1px solid black; } #filelist tr{ background: white; width: 400px; } /*Set upload queue header alignment*/ #filename-head{ text-align: left; } #filesize-head{ text-align:right; } #public-head{ text-align: center; } #progress-head{ text-align: right; padding-right: 22px; } td.filenameCol{ max-width: 190px; overflow: hidden; } td.filesizeCol{ width: 55px; text-align: right; } td.publicCol{ width: 40px; text-align: center; vertical-align: middle; } td.progressCol{ width: 100px; height: 20px; text-align:right; padding-right: 22px; } .progressBar{ width: 100px; height: 20px; background-color: #f3f3f3; border: 0; height: 18px; border-radius: 9px; vertical-align: middle; }