diff --git a/typo3/sysext/backend/Resources/Public/JavaScript/DragUploader.js b/typo3/sysext/backend/Resources/Public/JavaScript/DragUploader.js
index 802fa7a2d312179501baf89f5fa1b33d1c220ef3..74cb01e49a0501c87cf29faf4ad502d7c845713d 100644
--- a/typo3/sysext/backend/Resources/Public/JavaScript/DragUploader.js
+++ b/typo3/sysext/backend/Resources/Public/JavaScript/DragUploader.js
@@ -140,7 +140,7 @@ define('TYPO3/CMS/Backend/DragUploader', ['jquery'], function($) {
 
 			// no filelist then create own progress table
 			if (me.$fileList.length === 0) {
-				me.$fileList = $('<table />').attr('id', 'typo3-filelist').addClass('t3-upload-queue').html('<tbody></tbody>').hide();
+				me.$fileList = $('<table />').attr('id', 'typo3-filelist').addClass('t3-table t3-upload-queue').html('<tbody></tbody>').hide();
 				if (me.dropZoneInsertBefore) {
 					me.$fileList.insertAfter(me.$dropzone);
 				} else {
@@ -164,7 +164,7 @@ define('TYPO3/CMS/Backend/DragUploader', ['jquery'], function($) {
 		me.file = file;
 		me.override = override;
 
-		me.$row = $('<tr />').addClass('file_list_normal t3-upload-queue-item uploading');
+		me.$row = $('<tr />').addClass('t3-upload-queue-item uploading');
 		me.$iconCol = $('<td />').addClass('col-icon').appendTo(me.$row);
 		me.$fileName = $('<td />').text(file.name).appendTo(me.$row);
 		me.$progress = $('<td />').addClass('t3-upload-queue-progress')
diff --git a/typo3/sysext/t3skin/Resources/Public/Css/visual/module_file_list.css b/typo3/sysext/t3skin/Resources/Public/Css/visual/module_file_list.css
index b780d42a762bb8b89ee34ef373fe40754ea6cbf5..82c8e4c981584ce457c927834dba70a2992d0456 100644
--- a/typo3/sysext/t3skin/Resources/Public/Css/visual/module_file_list.css
+++ b/typo3/sysext/t3skin/Resources/Public/Css/visual/module_file_list.css
@@ -57,27 +57,27 @@ table#typo3-filelist tr td div.typo3-editCtrl {
 table.t3-upload-queue {
 	margin: 10px 0;
 }
-table#typo3-filelist tr.file_list_normal.t3-upload-queue-item.last td {
+table#typo3-filelist tr.t3-upload-queue-item.last td {
 	border-bottom: 1px solid #666666;
 }
-table#typo3-filelist.t3-upload-queue tr.file_list_normal.t3-upload-queue-item.last td {
-	border-bottom: 1px solid #A2AAB8;
+table#typo3-filelist.t3-upload-queue tr.t3-upload-queue-item.last td {
+	border-bottom: 1px solid #D7D7D7;
 }
-table#typo3-filelist tr.file_list_normal.t3-upload-queue-item.uploading td {
+table#typo3-filelist tr.t3-upload-queue-item.uploading td {
 	color: #9D9D9D;
 }
-table#typo3-filelist tr.file_list_normal.t3-upload-queue-item.error td {
+table#typo3-filelist tr.t3-upload-queue-item.error td {
 	color: #BF383F;
 }
-table#typo3-filelist tr.file_list_normal.t3-upload-queue-item td.t3-upload-queue-progress {
+table#typo3-filelist tr.t3-upload-queue-item td.t3-upload-queue-progress {
 	color: #FFF;
 	padding: 0;
 }
-table#typo3-filelist tr.file_list_normal.t3-upload-queue-item.uploading td.t3-upload-queue-progress {
+table#typo3-filelist tr.t3-upload-queue-item.uploading td.t3-upload-queue-progress {
 	background-color: #F2CEB0;
 	color: #000;
 }
-table#typo3-filelist tr.file_list_normal.t3-upload-queue-item.error td.t3-upload-queue-progress {
+table#typo3-filelist tr.t3-upload-queue-item.error td.t3-upload-queue-progress {
 	background-color: #E5B6B9;
 	color: #F7F7F7;
 }
@@ -111,4 +111,4 @@ div.t3-upload-queue-progress {
 }
 .error .t3-upload-queue-progress-bar {
 	background-color: #BF383F;
-}
\ No newline at end of file
+}