Updated the flex styles to bias to auto size, rather than 0 size. Since the bias is only used by IE (though part of the standard), this was causing a break in IE but "worked" in current versions of other browsers...for now.

This commit is contained in:
Arlo Belshee 2014-09-02 17:45:32 -07:00
parent 3c9155064a
commit e6945c646b

View file

@ -1,3 +1,9 @@
/* Partial reset */
p, div {
display: block;
}
/* Main styles */
html { html {
height: 100%; height: 100%;
} }
@ -66,7 +72,7 @@ div.modalTerminal p {
html, html,
body, body,
.box { .box {
display: flexbox; display: flex;
display: -moz-box; display: -moz-box;
display: -webkit-box; display: -webkit-box;
display: -ms-flexbox; display: -ms-flexbox;
@ -76,29 +82,29 @@ body,
.flex1 { .flex1 {
-webkit-box-flex: 1; -webkit-box-flex: 1;
-moz-box-flex: 1; -moz-box-flex: 1;
-ms-flex: 1.0; -ms-flex: 1.0 1.0 auto;
flex: 1; flex: 1 1 auto;
} }
.flex2 { .flex2 {
-webkit-box-flex: 2; -webkit-box-flex: 2;
-moz-box-flex: 2; -moz-box-flex: 2;
-ms-flex: 2.0; -ms-flex: 2.0 2.0 auto;
flex: 2; flex: 2 2 auto;
} }
.flex3 { .flex3 {
-webkit-box-flex: 3; -webkit-box-flex: 3;
-moz-box-flex: 3; -moz-box-flex: 3;
-ms-flex: 3.0; -ms-flex: 3.0 3.0 auto;
flex: 3; flex: 3 3 auto;
} }
.flex10 { .flex10 {
-webkit-box-flex: 10; -webkit-box-flex: 10;
-moz-box-flex: 10; -moz-box-flex: 10;
-ms-flex: 10.0; -ms-flex: 10.0 10.0 auto;
flex: 10; flex: 10 10 auto;
} }
html, html,