From: Daniel Calviño Sánchez Date: Mon, 6 May 2019 07:14:29 +0000 (+0200) Subject: Fix collapse button in app navigation in IE11 X-Git-Tag: v17.0.0beta1~481^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=de84e037e022aa659392d7ba412c023e51de46ed;p=nextcloud-server.git Fix collapse button in app navigation in IE11 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 --- diff --git a/core/css/apps.scss b/core/css/apps.scss index 7a979d16585..433100d042f 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;