From 2003a082a5db61e476c1b9476411926f386dac15 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Thu, 2 Feb 2017 20:06:02 +0100 Subject: [PATCH] Fixed box size issue in IE11 --- wcfsetup/install/files/style/layout/box.scss | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/wcfsetup/install/files/style/layout/box.scss b/wcfsetup/install/files/style/layout/box.scss index 4f79ec3f4c..afa680a1c1 100644 --- a/wcfsetup/install/files/style/layout/box.scss +++ b/wcfsetup/install/files/style/layout/box.scss @@ -153,13 +153,13 @@ &.boxFullWidth { flex-basis: 100%; - max-width: none; + max-width: 100%; } /* one item */ &:first-child:nth-last-child(1) { flex-basis: 100%; - max-width: none; + max-width: 100%; } } @@ -170,13 +170,13 @@ &.boxFullWidth { flex-basis: 100%; - max-width: none; + max-width: 100%; } /* one item */ &:first-child:nth-last-child(1) { flex-basis: 100%; - max-width: none; + max-width: 100%; } /* two items */ @@ -460,7 +460,8 @@ @include screen-md-down { position: relative; - .boxMenuLink { + .boxMenuLink, + .boxMenuLinkTitle { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; @@ -693,7 +694,7 @@ &.boxFullWidth { flex-basis: 100%; - max-width: none; + max-width: 100%; } } } -- 2.20.1