mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
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
This commit is contained in:
parent
48ac8b026f
commit
dd08485b36
1 changed files with 2 additions and 2 deletions
|
|
@ -21,12 +21,12 @@ body
|
||||||
overflow-y: auto
|
overflow-y: auto
|
||||||
display: flex
|
display: flex
|
||||||
flex-direction: column
|
flex-direction: column
|
||||||
min-height: 100vh
|
height: 100vh
|
||||||
overflow: hidden
|
|
||||||
|
|
||||||
#content
|
#content
|
||||||
position: relative
|
position: relative
|
||||||
flex: 1
|
flex: 1
|
||||||
|
overflow: hidden
|
||||||
|
|
||||||
#modal
|
#modal
|
||||||
position: absolute
|
position: absolute
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue