proper fix for https://github.com/vector-im/vector-web/issues/917 and resolve https://github.com/vector-im/vector-web/issues/928
This commit is contained in:
parent
a2193d61b0
commit
ad9935739c
2 changed files with 4 additions and 6 deletions
|
@ -51,14 +51,14 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MemberList .mx_SearchableEntityList_expanded {
|
.mx_MemberList .mx_SearchableEntityList_expanded {
|
||||||
flex: 1 1 100%;
|
flex: 1 0 0;
|
||||||
-webkit-flex: 1 1 100%;
|
-webkit-flex: 1 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MemberList_joined {
|
.mx_MemberList_joined {
|
||||||
order: 2;
|
order: 2;
|
||||||
flex: 1 1 100%;
|
flex: 1 0 0;
|
||||||
-webkit-flex: 1 1 100%;
|
-webkit-flex: 1 0 0;
|
||||||
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,8 +17,6 @@ limitations under the License.
|
||||||
.mx_RightPanel {
|
.mx_RightPanel {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
height: 100%; /* needed for memberlist flexbox to work in chrome 48+ */
|
|
||||||
|
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -moz-box;
|
display: -moz-box;
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
|
|
Loading…
Reference in a new issue