From f3d0ea4b827423762538da66b8c45e31297ee6bc 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 43055680e28f3..0f5534cc71f22 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;