diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2015-10-02 08:58:16 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2015-10-02 08:58:16 +0200 |
commit | 3dec30d0e09128002f24f58b7ea042c42defce31 (patch) | |
tree | 13c2c699f05fd8d5c999dd96c229feb40ec8f265 /core/css | |
parent | bf4c3ce134468c9a612aeeef78dfe600dbb3e52b (diff) | |
parent | 287fbdf77aa0ef3971abd524774733be8bd70aee (diff) | |
download | nextcloud-server-3dec30d0e09128002f24f58b7ea042c42defce31.tar.gz nextcloud-server-3dec30d0e09128002f24f58b7ea042c42defce31.zip |
Merge pull request #19484 from owncloud/ie8-checkbox-rage
[IE8] Fix checkboxes in login page and file list
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index c0da29b71ca..df533aab318 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -159,6 +159,9 @@ textarea:hover, textarea:focus, textarea:active { opacity: 1; } +.ie8 input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; } +.ie8 input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; } + /* ie8 doesn't support :checked */ html:not(.ie8) input[type="checkbox"].checkbox { margin:0; @@ -657,6 +660,14 @@ label.infield { padding-left: 28px; vertical-align: middle; } +html.ie8 #body-login form input[type="checkbox"]+label { + margin-left: -28px; + margin-top: -3px; + vertical-align: auto; +} +html.ie8 #body-login form input[type="checkbox"] { + margin-top: 5px; +} #body-login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } #body-login .success { background:#d7fed7; border:1px solid #0f0; width: 35%; margin: 30px auto; padding:1em; text-align: center;} @@ -852,7 +863,6 @@ label.infield { } #remember_login { margin: 18px 5px 0 16px !important; - vertical-align: text-bottom; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; opacity: .7; } |