diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-05-06 15:29:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-06 15:29:22 +0200 |
commit | fe00a356806e904072f2ce1e5aaec00e35646109 (patch) | |
tree | f3c0f4635686a6a67304a4dd05d9ea93beba0c27 /core | |
parent | 3f657f87bad077c26e4de00744546faf5a238e63 (diff) | |
parent | f3d0ea4b827423762538da66b8c45e31297ee6bc (diff) | |
download | nextcloud-server-fe00a356806e904072f2ce1e5aaec00e35646109.tar.gz nextcloud-server-fe00a356806e904072f2ce1e5aaec00e35646109.zip |
Merge pull request #15390 from nextcloud/backport/15384/stable15
[stable15] Fix collapse button in app navigation in IE11
Diffstat (limited to 'core')
-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 43055680e28..0f5534cc71f 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; |