Merge pull request #205 from arlobelshee/fixing_ie_support

Fixing ie support
This commit is contained in:
Peter Cottle 2014-08-28 20:20:27 -07:00
commit 3c9155064a

View file

@ -66,39 +66,39 @@ div.modalTerminal p {
html,
body,
.box {
display: box;
display: flexbox;
display: -moz-box;
display: -webkit-box;
display: -ms-box;
display: -ms-flexbox;
}
body,
.flex1 {
-webkit-box-flex: 1;
-moz-box-flex: 1;
-ms-box-flex: 1;
box-flex: 1;
-ms-flex: 1.0;
flex: 1;
}
.flex2 {
-webkit-box-flex: 2;
-moz-box-flex: 2;
-ms-box-flex: 2;
box-flex: 2;
-ms-flex: 2.0;
flex: 2;
}
.flex3 {
-webkit-box-flex: 3;
-moz-box-flex: 3;
-ms-box-flex: 3;
box-flex: 3;
-ms-flex: 3.0;
flex: 3;
}
.flex10 {
-webkit-box-flex: 10;
-moz-box-flex: 10;
-ms-box-flex: 10;
box-flex: 10;
-ms-flex: 10.0;
flex: 10;
}
html,
@ -106,43 +106,43 @@ body,
.vertical {
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
-ms-box-orient: vertical;
box-orient: vertical;
-ms-flex-direction: column;
flex-direction: column;
}
.horizontal {
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-ms-box-orient: horizontal;
box-orient: horizontal;
-ms-flex-direction: row;
flex-direction: row;
}
.centerAlign {
-webkit-box-align: center;
-moz-box-align: center;
-ms-box-align: center;
box-align: center;
-ms-flex-align: center;
justify-content : center;
}
.startAlign {
-webkit-box-align: start;
-moz-box-align: start;
-ms-box-align: start;
box-align: start;
-ms-flex-align: start;
justify-content: flex-start;
}
.center {
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-box-pack: center;
box-pack: center;
-ms-flex-pack: center;
align-content: center;
}
.justify {
-webkit-box-pack: justify;
-moz-box-pack: justify;
-ms-box-pack: justify;
box-pack: justify;
-ms-flex-pack: justify;
align-content: stretch;
}
/* Transition */