summaryrefslogtreecommitdiffstats
path: root/files/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-07-30 15:16:20 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-07-30 15:16:20 +0200
commit9714bab6533a0c8b7be0990b77063df7037bc0a1 (patch)
tree80f75b6e7a63e6300ee1e8d264915f583b43abef /files/js
parent77abade785027d9e3287855479585d0170afc6c8 (diff)
downloadnextcloud-server-9714bab6533a0c8b7be0990b77063df7037bc0a1.tar.gz
nextcloud-server-9714bab6533a0c8b7be0990b77063df7037bc0a1.zip
fixed table heading and multiselect style
Diffstat (limited to 'files/js')
-rw-r--r--files/js/files.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/js/files.js b/files/js/files.js
index 7812d70bbb3..3d3d8ca49fd 100644
--- a/files/js/files.js
+++ b/files/js/files.js
@@ -342,7 +342,7 @@ function procesSelection(){
$('#headerName>span.name').text('Name');
$('#headerSize').text('Size MB');
$('#modified').text('Modified');
- $('th').css({background:'#fff',fontWeight:'normal'});
+ $('th').removeClass('multiselect');
$('.selectedActions').hide();
}else{
$('.selectedActions').show();
@@ -376,7 +376,7 @@ function procesSelection(){
}
$('#headerName>span.name').text(selection);
$('#modified').text('');
- $('th').css({background:'#ddd', fontWeight:'bold'});
+ $('th').addClass('multiselect');
}
}