summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-11-09 15:12:19 +0100
committerGitHub <noreply@github.com>2018-11-09 15:12:19 +0100
commit2b204616d58c0f20ad72d56acc4a315f14da24e3 (patch)
tree7fd3262ae5e73594d41a08d92d4040e95a52061e
parent7fba370a75bb448de8f324a5b25caa4689fd93f7 (diff)
parent50ee75db5ae28585be0dfcea42f9196685765db6 (diff)
downloadnextcloud-server-2b204616d58c0f20ad72d56acc4a315f14da24e3.tar.gz
nextcloud-server-2b204616d58c0f20ad72d56acc4a315f14da24e3.zip
Merge pull request #12374 from nextcloud/backport/12342/stable14
[14] Add fix for IE11 flexbox height bug
-rw-r--r--core/css/ie.scss5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/css/ie.scss b/core/css/ie.scss
index a4d2c8336ec..f1a617f0975 100644
--- a/core/css/ie.scss
+++ b/core/css/ie.scss
@@ -4,6 +4,11 @@
}
#app-content {
width: $navigation-width !important;
+ /**
+ * set min height so the container will grow in IE11
+ * https://stackoverflow.com/questions/28627879/flexbox-not-filling-height-in-ie11
+ */
+ min-height: calc(100vh - 50px);
}
#app-sidebar.disappear {
right: -$sidebar-max-width !important;