Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Bugfix IE11, known issue with flex-direction: column
Browse files Browse the repository at this point in the history
  • Loading branch information
Fahri Reza committed Mar 5, 2016
1 parent 15efd24 commit 109222e
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/views/styles/component/_iefix.scss
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;
}
}
3 changes: 3 additions & 0 deletions app/views/styles/theme-formhub/theme-formhub.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@
@import "form_formhub";
@import "../component/form_header";
@import "../component/form_footer";

// ie patch
@import "../component/iefix";
3 changes: 3 additions & 0 deletions app/views/styles/theme-grid/theme-grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@
@import "form-grid";
@import "../component/form_header";
@import "../component/form_footer";

// ie patch
@import "../component/iefix";
3 changes: 3 additions & 0 deletions app/views/styles/theme-kobo/theme-kobo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@
@import "../theme-formhub/form_formhub";
@import "../component/form_header";
@import "../component/form_footer";

// ie patch
@import "../component/iefix";
3 changes: 3 additions & 0 deletions app/views/styles/theme-oc/theme-oc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@
@import "../theme-formhub/form_formhub";
@import "../component/form_header";
@import "../component/form_footer";

// ie patch
@import "../component/iefix";
3 changes: 3 additions & 0 deletions app/views/styles/theme-plain/theme-plain.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,6 @@
@import "form_plain";
@import "../component/form_header";
@import "../component/form_footer";

// ie patch
@import "../component/iefix";

0 comments on commit 109222e

Please sign in to comment.