aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-15 03:32:31 -0800
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-15 03:32:31 -0800
commitac32ae79af586d6117969c385da6753cdbd9ce1a (patch)
tree626337ffd3cfac16f5e8250f3effad3174c52413 /apps
parent08b68aac6c89c75d8735a9bd5df9da296e06e7d1 (diff)
parentbb52271d220c2cc94e6823f39dfcbd5d842daba0 (diff)
downloadnextcloud-server-ac32ae79af586d6117969c385da6753cdbd9ce1a.tar.gz
nextcloud-server-ac32ae79af586d6117969c385da6753cdbd9ce1a.zip
Merge pull request #1683 from owncloud/ie-fixes
IE fixes
Diffstat (limited to 'apps')
-rw-r--r--apps/files/css/files.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index 1dae49c1cf4..dfc2e4c0e2f 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -87,9 +87,14 @@ table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0
table td.filename .nametext { overflow:hidden; text-overflow:ellipsis; }
table td.filename .uploadtext { font-weight:normal; margin-left:.5em; }
table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; }
+
+/* File checkboxes */
#fileList tr td.filename>input[type="checkbox"]:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); 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 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; }
#fileList tr td.filename>input[type="checkbox"]:hover:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; }
+/* Always show checkbox when selected */
#fileList tr td.filename>input[type="checkbox"]:checked:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
+#fileList tr.selected td.filename>input[type="checkbox"]:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
+
#fileList tr td.filename {
position:relative; width:100%;
-webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms;