Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/css
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-05-06 10:14:29 +0300
committerBackportbot <backportbot-noreply@rullzer.com>2019-05-06 15:09:27 +0300
commitfcca3778ad6bd8691f0d10b95eece68bdf5482f9 (patch)
tree38aeea1aec649b9acff1b9d956886622844b9b7b /core/css
parent473d9a9a08e6eee9171f8e07b9be6bc1211d3776 (diff)
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')
-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;