[system_tracking] Fix flexbox table styling in IE11

This commit is contained in:
Joe Fiorini
2015-06-10 14:19:36 -04:00
parent 4b41e86e75
commit 9f6d93760e
4 changed files with 7 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
/** @define DatePicker */ /** @define DatePicker */
.DatePicker { .DatePicker {
flex: 1; flex: 1 0 auto;
display: flex; display: flex;
&-icon { &-icon {
@@ -24,7 +24,7 @@
} }
&-input { &-input {
flex: 1; flex: 1 0 auto;
border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0;
border: 1px solid #ccc; border: 1px solid #ccc;
padding: 6px 12px; padding: 6px 12px;

View File

@@ -24,7 +24,7 @@
&-column { &-column {
padding: 8px; padding: 8px;
flex: 1; flex: 1 0 33%;
white-space: nowrap; white-space: nowrap;
&--offsetLeft { &--offsetLeft {
margin-left: 33%; margin-left: 33%;

View File

@@ -6,7 +6,7 @@
margin-bottom: 15px; margin-bottom: 15px;
&-dateContainer { &-dateContainer {
flex: 1; flex: 1 0 auto;
display: flex; display: flex;
flex-direction: column flex-direction: column
} }
@@ -20,7 +20,7 @@
} }
&-label { &-label {
flex: 1; flex: 1 0 auto;
font-weight: 700; font-weight: 700;
padding-bottom: 5px; padding-bottom: 5px;
} }

View File

@@ -4,11 +4,11 @@
min-height: 85vh; min-height: 85vh;
> * { > * {
flex: 0; flex: 0 0 auto;
} }
&-main { &-main {
flex: 1; flex: 1 0 auto;
align-self: stretch; align-self: stretch;
} }
} }