summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-08-27 00:28:42 +0200
committerMaxime Quandalle <maxime@quandalle.com>2015-08-27 00:36:33 +0200
commitdd08485b368e5053339481ac2f450ed01565acca (patch)
tree56d4e1c53115deacbd5ba518025901a5fdcf01e6 /client
parent48ac8b026ffdf8b3823c573e5693dcf1765383e2 (diff)
downloadwekan-dd08485b368e5053339481ac2f450ed01565acca.tar.gz
wekan-dd08485b368e5053339481ac2f450ed01565acca.tar.bz2
wekan-dd08485b368e5053339481ac2f450ed01565acca.zip
Fix the layout on IE11
The new user interface uses the flexbox box model has it's primary way to organize the layout. Unfortunately IE have a non-negligible amount of subtitle and tricky bugs with its flexbox implementation. This one was about a `flex-grow: 1` element not growing in a container which size is defined with `min-height`. See the bug in Microsoft bug tracker for more details: https://connect.microsoft.com/IE/feedback/details/802625/ Fixes #225
Diffstat (limited to 'client')
-rw-r--r--client/components/main/layouts.styl4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/main/layouts.styl b/client/components/main/layouts.styl
index f3d9bfe9..9a831a40 100644
--- a/client/components/main/layouts.styl
+++ b/client/components/main/layouts.styl
@@ -21,12 +21,12 @@ body
overflow-y: auto
display: flex
flex-direction: column
- min-height: 100vh
- overflow: hidden
+ height: 100vh
#content
position: relative
flex: 1
+ overflow: hidden
#modal
position: absolute