From 83ccbbe49f1e44da8d3abdfa7668af527c60c530 Mon Sep 17 00:00:00 2001
From: Scott Barnett <scott.n.barnett@gmail.com>
Date: Tue, 27 Sep 2011 06:48:05 +1000
Subject: [PATCH] Fixed table gap from appearing.

---
 files/js/files.js | 2 --
 1 file changed, 2 deletions(-)

diff --git a/files/js/files.js b/files/js/files.js
index 8289d418e6..9342642b4f 100644
--- a/files/js/files.js
+++ b/files/js/files.js
@@ -385,11 +385,9 @@ function procesSelection(){
 		$('table').css('padding-top','0');
 	}else{
 		var width={name:$('#headerName').css('width'),size:$('#headerSize').css('width'),date:$('#headerDate').css('width')};
-		$('thead').addClass('fixed');
 		$('#headerName').css('width',width.name);
 		$('#headerSize').css('width',width.size);
 		$('#headerDate').css('width',width.date);
-		$('table').css('padding-top','2.1em');
 		$('.selectedActions').show();
 		var totalSize=0;
 		for(var i=0;i<selectedFiles.length;i++){
-- 
GitLab