diff options
author | Jan-Christoph Borchardt <jan@unhosted.org> | 2011-10-21 18:24:56 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <jan@unhosted.org> | 2011-10-21 21:00:26 +0200 |
commit | 92ba000f09882224526373dc04ac8926dc9ca27d (patch) | |
tree | 44b1f3868ef0277ca44b1caf9d2a85763e06192d | |
parent | 43c28b941b6ddb9c74056749066d2707d56d3332 (diff) | |
download | nextcloud-server-92ba000f09882224526373dc04ac8926dc9ca27d.tar.gz nextcloud-server-92ba000f09882224526373dc04ac8926dc9ca27d.zip |
only show checkbox on hovering filetype icon
-rw-r--r-- | files/css/files.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/css/files.css b/files/css/files.css index 1007554cdd6..c7d39d114b3 100644 --- a/files/css/files.css +++ b/files/css/files.css @@ -54,7 +54,7 @@ table td.filename form { float:left; font-size:.85em; } table thead.fixed tr{ position:fixed; top:6.5em; z-index:49; -moz-box-shadow:0 -3px 7px #ddd; -webkit-box-shadow:0 -3px 7px #ddd; box-shadow:0 -3px 7px #ddd; } table thead.fixed { height:2em; } #fileList tr td.filename>input[type=checkbox]:first-child { opacity:0; float:left; margin:.7em 0 0 1em; /* bigger clickable area doesn’t work in FF width:2.8em; height:2.4em;*/ -webkit-transition:opacity 500ms; -moz-transition:opacity 500ms; -o-transition:opacity 500ms; transition:opacity 500ms; } -#fileList tr:hover td.filename>input[type="checkbox"]:first-child { opacity:.8; } +#fileList tr td.filename>input[type="checkbox"]:hover:first-child { opacity:.8; } #fileList tr td.filename>input[type="checkbox"]:checked:first-child { opacity:1; } #fileList tr td.filename { -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; } #select_all { float:left; margin:.3em 0.6em 0 .5em; } |