sacrifice a flexbox goat or two to make firefox work. apparently flex-inside-nonflex-inside-flex always results in extreme confusion

pull/4/head
Matthew Hodgson 2015-07-23 00:41:35 -07:00
parent 0781c767ff
commit d4efb37b03
2 changed files with 15 additions and 3 deletions

View File

@ -18,6 +18,18 @@ limitations under the License.
height: 100%;
margin-bottom: 100px;
padding: 8px;
-webkit-flex: 1;
flex: 1;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
-webkit-flex-direction: column;
}
.mx_MemberList_chevron {
@ -29,11 +41,12 @@ limitations under the License.
.mx_MemberList_border {
border: 1px solid #a9dbf4;
overflow-y: scroll;
height: auto;
max-height: 75%;
border-radius: 8px;
padding: 20px 14px 14px 24px;
background-color: #fff;
order: 1;
flex: 1 1 0px;
}
.mx_MemberList_wrapper {

View File

@ -110,5 +110,4 @@ limitations under the License.
background-color: #f3f8fa;
-webkit-flex: 0 0 230px;
flex: 0 0 230px;
height: 100%;
}