summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-09-04 21:32:45 +0200
committerVincent Petry <pvince81@owncloud.com>2013-09-08 22:21:07 +0200
commit5f67ccba004547a29cdc17fdcce4d4b649225a8f (patch)
tree3b5cb989371e1fdd1a840c73c0da488b8da97a92 /apps
parent09187f3b3b30e6f810c6afff7332615ed472154e (diff)
downloadnextcloud-server-5f67ccba004547a29cdc17fdcce4d4b649225a8f.tar.gz
nextcloud-server-5f67ccba004547a29cdc17fdcce4d4b649225a8f.zip
Fixed missing checkboxes in IE8
IE8 is not happy with the :checked CSS3 selector which causes it to ignore the whole rule. Replace it with a more compatible selector.
Diffstat (limited to 'apps')
-rw-r--r--apps/files/css/files.css7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index 02a73ba83e5..84033f94637 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -190,10 +190,15 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; }
#fileList tr:hover td.filename>input[type="checkbox"]:first-child,
#fileList tr td.filename>input[type="checkbox"]:checked:first-child,
#fileList tr.selected td.filename>input[type="checkbox"]:first-child {
+ opacity: 1;
+}
+.lte9 #fileList tr:hover td.filename>input[type="checkbox"]:first-child,
+.lte9 #fileList tr td.filename>input[type="checkbox"][checked=checked]:first-child,
+.lte9 #fileList tr.selected td.filename>input[type="checkbox"]:first-child {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
- opacity: 1;
}
+
/* Use label to have bigger clickable size for checkbox */
#fileList tr td.filename>input[type="checkbox"] + label,
#select_all + label {