highlight selected files in the filebrowser

remotes/origin/stable
Robin Appelman 14 years ago
parent 45bda0997f
commit f22e39a574
  1. 1
      files/css/files.css
  2. 8
      files/js/files.js

@ -76,6 +76,7 @@ table {
}
tbody tr:hover, tbody tr:active { background-color:#eee; }
tbody tr.selected { background-color:#ccc; }
tbody a { color:#000; }
table td.filesize, table td.date

@ -31,15 +31,19 @@ $(document).ready(function() {
// Sets the select_all checkbox behaviour :
$('#select_all').click(function() {
if($(this).attr('checked'))
if($(this).attr('checked')){
// Check all
$('td.selection input:checkbox').attr('checked', true);
else
$('td.selection input:checkbox').parent().parent().addClass('selected');
}else{
// Uncheck all
$('td.selection input:checkbox').attr('checked', false);
$('td.selection input:checkbox').parent().parent().removeClass('selected');
}
});
$('td.selection input:checkbox').live('click',function() {
$(this).parent().parent().toggleClass('selected');
if(!$(this).attr('checked')){
$('#select_all').attr('checked',false);
}else{

Loading…
Cancel
Save