IE11 Fix for tracking dropdown

This commit is contained in:
Kris 2018-10-26 12:55:26 -04:00
parent 84f858fc23
commit 1f88f69a7f
2 changed files with 7 additions and 5 deletions

View File

@ -29,6 +29,7 @@
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex: 0 0 auto;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
@ -51,11 +52,11 @@
}
.texts {
min-width: 0;
width: 0; //IE11
line-height: $line-height-large;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
flex: 1 0 auto;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
@ -72,7 +73,7 @@
.name {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
flex: 1 0 auto;
font-weight: bold;
font-size: $font-0;
color: $primary;
@ -86,7 +87,8 @@
.desc {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
flex: 1 0 auto;
width: 100%; //IE11
font-size: $font-down-1;
font-weight: normal;
color: dark-light-choose(

View File

@ -131,7 +131,7 @@
margin: 0;
overflow: hidden;
text-overflow: ellipsis;
flex: 10;
flex: 1 0 auto;
}
.d-icon {