summaryrefslogtreecommitdiffstats
path: root/core/css/apps.scss
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-05-06 09:14:29 +0200
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-05-06 09:14:29 +0200
commitde84e037e022aa659392d7ba412c023e51de46ed (patch)
tree5fcdcffc1a1cd8a1110f716bdf26e0d58f35d6c6 /core/css/apps.scss
parent0877a2e6274ed233eb8773099bceaa32b870195f (diff)
downloadnextcloud-server-de84e037e022aa659392d7ba412c023e51de46ed.tar.gz
nextcloud-server-de84e037e022aa659392d7ba412c023e51de46ed.zip
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 <danxuliu@gmail.com>
Diffstat (limited to 'core/css/apps.scss')
-rw-r--r--core/css/apps.scss4
1 files changed, 4 insertions, 0 deletions
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;