diff options
author | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-09-23 13:32:58 +0200 |
---|---|---|
committer | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-09-23 17:14:02 +0200 |
commit | 7a8cc9783159f488c9643d556b621d9e4cc68196 (patch) | |
tree | 4a539105df10cdb12b5ed5c96b6480c8a603241f /core | |
parent | 6f5f1c4f142e5e2417b188b55d2f9fadf03749b3 (diff) | |
download | nextcloud-server-7a8cc9783159f488c9643d556b621d9e4cc68196.tar.gz nextcloud-server-7a8cc9783159f488c9643d556b621d9e4cc68196.zip |
display checkboxes in ie8
Diffstat (limited to 'core')
-rw-r--r-- | core/css/fixes.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/css/fixes.css b/core/css/fixes.css index 7ef44ba6909..e5dbeb137ab 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -115,3 +115,8 @@ select { line-height: 38px; } +.lte8 input[type="checkbox"] + label:before { background-image: url('../img/actions/checkbox.png'); } +.lte8 input[type="checkbox"].white + label:before { background-image: url('../img/actions/checkbox-white.png'); } +.lte8 input[type="checkbox"]:checked + label:before { background-image: url('../img/actions/checkbox-checked.png'); } +.lte8 input[type="checkbox"].white:checked + label:before { background-image: url('../img/actions/checkbox-checked-white.png'); } + |