From fcca3778ad6bd8691f0d10b95eece68bdf5482f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Mon, 6 May 2019 09:14:29 +0200 Subject: [PATCH] Fix collapse button in app navigation in IE11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Although the collapse button has an absolute position Internet Explorer 11 needs the left position of that button to be explicitly set to 0 (other browsers do it implicitly due to the absolute position); otherwise the button appears to the right of the link (and behind the app content). Signed-off-by: Daniel Calviño Sánchez --- core/css/apps.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/css/apps.scss b/core/css/apps.scss index 7a979d1658..433100d042 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -358,6 +358,10 @@ kbd { height: 44px; margin: 0; z-index: 110; + + /* Needed for IE11; otherwise the button appears to the right of the + * link. */ + left: 0; } &:before { position: absolute;