/*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{ background: green; } #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; } td.publicCol{ width: 80px; text-align: center; vertical-align: middle; } td.filenameCol{ width: 130px; overflow: hidden; } .progressBar{ width: 100px; height: 20px; background-color: #f3f3f3; border: 0; height: 18px; border-radius: 9px; vertical-align: middle; } .progressCol{ width: 100px; height: 20px; } .filesize{ text-align: right; }