diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-04-18 11:02:06 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-04-18 11:02:06 +0200 |
commit | 4e5fe303a1f1906d34f5e303408e96236dfcc41b (patch) | |
tree | 23c99216923fd3a65f662ece9853819fe18a69e9 | |
parent | 1f514a1afa55ad98d09028eb50210932006b4012 (diff) | |
download | nextcloud-server-4e5fe303a1f1906d34f5e303408e96236dfcc41b.tar.gz nextcloud-server-4e5fe303a1f1906d34f5e303408e96236dfcc41b.zip |
only show selection checkboxes for files on hover
-rw-r--r-- | css/styles.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/css/styles.css b/css/styles.css index f0832d05947..d5b5f59f70c 100644 --- a/css/styles.css +++ b/css/styles.css @@ -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; } |