summaryrefslogtreecommitdiffstats
path: root/files/js/files.js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-07-28 12:14:55 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-07-28 12:14:55 +0200
commit43f99a89839d43ef042397b5b7d71f85453c7399 (patch)
tree3ca3f1fa67a42174905a72dcfb981540d21d431b /files/js/files.js
parentece6bd663cc2a03e339019c29d1ea9170d11c24e (diff)
downloadnextcloud-server-43f99a89839d43ef042397b5b7d71f85453c7399.tar.gz
nextcloud-server-43f99a89839d43ef042397b5b7d71f85453c7399.zip
finished action icons on hover, small style improvements
Diffstat (limited to 'files/js/files.js')
-rw-r--r--files/js/files.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/js/files.js b/files/js/files.js
index 23d4c0205f0..e9ae0ecd012 100644
--- a/files/js/files.js
+++ b/files/js/files.js
@@ -329,11 +329,11 @@ function procesSelection(){
if(selectedFiles.length==0 && selectedFolders.length==0){
$('#headerName>span.name').text('Name');
$('#headerSize').text('Size MB');
- $('#headerDate').text('Modified');
+ $('#modified').text('Modified');
$('th').css({background:'#fff',fontWeight:'normal'});
- $('#selectedActions').hide();
+ $('.selectedActions').hide();
}else{
- $('#selectedActions').show();
+ $('.selectedActions').show();
var totalSize=0;
for(var i=0;i<selectedFiles.length;i++){
totalSize+=selectedFiles[i].size;
@@ -369,7 +369,7 @@ function procesSelection(){
}
}
$('#headerName>span.name').text(selection);
- $('#headerDate').text('');
+ $('#modified').text('');
$('th').css({background:'#ddd', fontWeight:'bold'});
}
}