diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2019-05-06 09:14:29 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2019-05-06 09:14:29 +0200 |
commit | de84e037e022aa659392d7ba412c023e51de46ed (patch) | |
tree | 5fcdcffc1a1cd8a1110f716bdf26e0d58f35d6c6 /core/css/apps.scss | |
parent | 0877a2e6274ed233eb8773099bceaa32b870195f (diff) | |
download | nextcloud-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.scss | 4 |
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; |