diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-06-03 16:25:27 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-06-03 16:25:27 +0200 |
commit | d1f99f10036dd859a5fa36cddeb4663665a17c58 (patch) | |
tree | 2f7488dd72c4b4ddf8497920a9da406ac82e532c | |
parent | 30bc7a741895969d95316bc49c93f98ed4afac87 (diff) | |
parent | e56fb7e368a71a29436c2eae3c22040eb2fd00b7 (diff) | |
download | nextcloud-server-d1f99f10036dd859a5fa36cddeb4663665a17c58.tar.gz nextcloud-server-d1f99f10036dd859a5fa36cddeb4663665a17c58.zip |
Merge pull request #16705 from owncloud/stable8-fix-ie8-ie9
[stable8] fix IE8 & IE9
-rw-r--r-- | core/css/fixes.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/css/fixes.css b/core/css/fixes.css index c1f8eb76cf2..e708afa1193 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -60,6 +60,12 @@ select { visibility: hidden; } +/* fix installation screen rendering issue for IE8+9 */ +.lte9 #body-login { + min-height: 100%; + height: auto !important; +} + /* oc-dialog only uses box shadow which is not supported by ie8 */ .ie8 .oc-dialog { border: 1px solid #888888; |