From 99c6f96c694886674ef461fc7eba4928b4e777d1 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 3 Jun 2015 10:20:29 +0200 Subject: Revert "fix theme in IE8 and IE9" This reverts commit a4c9688711977376f9d8ad7bf94a1e92d964cd7b. --- core/css/fixes.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/css/fixes.css b/core/css/fixes.css index 894d9bc14a5..b274454329a 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -64,6 +64,11 @@ select { visibility: hidden; } +/* fix installation screen rendering issue for IE8+9 */ +.lte9 #body-login { + height: auto !important; +} + /* oc-dialog only uses box shadow which is not supported by ie8 */ .ie8 .oc-dialog { border: 1px solid #888888; -- cgit v1.2.3 From 49d618671486ec7084ff2cc3ff1ef1e6b7fe49d4 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 3 Jun 2015 10:22:57 +0200 Subject: Add min-height to login page for IE8 and IE9 --- core/css/fixes.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/fixes.css b/core/css/fixes.css index b274454329a..7ef44ba6909 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -66,6 +66,7 @@ select { /* fix installation screen rendering issue for IE8+9 */ .lte9 #body-login { + min-height: 100%; height: auto !important; } -- cgit v1.2.3