This repository has been archived by the owner on Jun 12, 2024. It is now read-only.
forked from kobotoolbox/enketo-express
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix IE11, known issue with flex-direction: column
`flex-direction: column` ignores `min-height`, see: https://connect.microsoft.com/IE/feedback/details/802625/min-height-and-flexbox-flex-direction-column-dont-work-together-in-ie-10-11-preview the proposed solution is to use `flex-shrink: 0`, see: http://philipwalton.com/articles/normalizing-cross-browser-flexbox-bugs/
- Loading branch information
Fahri Reza
committed
Mar 5, 2016
1 parent
15efd24
commit 109222e
Showing
6 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | ||
.form-footer__content__main-controls, | ||
.main, | ||
.main .paper, | ||
.paper > form { | ||
// bugfix for display:flex with parent min-height | ||
// see: http://philipwalton.com/articles/normalizing-cross-browser-flexbox-bugs/ | ||
-ms-flex-basis: auto; | ||
flex-basis: auto; | ||
-ms-flex-shrink: 0; | ||
flex-shrink: 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters