only show selection checkboxes for files on hover

This commit is contained in:
Robin Appelman 2011-04-18 11:02:06 +02:00
parent 1f514a1afa
commit 4e5fe303a1
1 changed files with 3 additions and 0 deletions

View File

@ -99,6 +99,9 @@ table td.download { background-image:url('../img/download.png'); }
table td.upload { background-image:url('../img/upload.png'); }
table td.create { background-image:url('../img/folder-new.png'); }
table td.delete { background-image:url('../img/delete.png'); }
#fileList tr input[type=checkbox] { display:none; }
#fileList tr input[type=checkbox]:checked { display:inline; }
#fileList tr:hover input[type=checkbox] { display:inline; }
/* NAVIGATION BAR */
p.nav { margin:1em 0 0 2em; padding:0.8em; line-height:16px; font-weight:bold; }