Skip to content
Snippets Groups Projects
Commit 2cdde7a5 authored by Thomas Tanghus's avatar Thomas Tanghus
Browse files

Merge pull request #4726 from owncloud/files-ie8-missingfilecheckboxes

Fixed missing checkboxes in IE8
parents 63a5409c 5f67ccba
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment