2015-07-12 20:51:24 -04:00
|
|
|
/*
|
|
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_MemberList {
|
2015-07-14 07:11:01 -04:00
|
|
|
height: 100%;
|
|
|
|
margin-bottom: 100px;
|
2015-07-14 19:31:47 -04:00
|
|
|
padding: 8px;
|
2015-07-23 03:41:35 -04:00
|
|
|
|
|
|
|
-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;
|
2015-07-12 20:51:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MemberList_chevron {
|
2015-07-14 07:11:01 -04:00
|
|
|
position: absolute;
|
2015-07-14 23:16:38 -04:00
|
|
|
right: 35px;
|
2015-07-17 19:48:22 -04:00
|
|
|
margin-top: -15px;
|
2015-07-12 20:51:24 -04:00
|
|
|
}
|
|
|
|
|
2015-07-14 19:31:47 -04:00
|
|
|
.mx_MemberList_border {
|
2015-07-17 15:09:43 -04:00
|
|
|
border: 1px solid #a9dbf4;
|
2015-08-07 11:48:48 -04:00
|
|
|
overflow-y: auto;
|
2015-07-14 07:11:01 -04:00
|
|
|
border-radius: 8px;
|
2015-07-14 19:36:54 -04:00
|
|
|
padding: 20px 14px 14px 24px;
|
2015-07-14 23:16:38 -04:00
|
|
|
background-color: #fff;
|
2015-07-23 03:41:35 -04:00
|
|
|
|
|
|
|
order: 1;
|
2015-08-11 16:00:33 -04:00
|
|
|
-webkit-flex: 1 1 0;
|
2015-07-23 03:41:35 -04:00
|
|
|
flex: 1 1 0px;
|
2015-07-14 19:31:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MemberList_wrapper {
|
|
|
|
display: table;
|
2015-07-14 07:11:01 -04:00
|
|
|
table-layout: fixed;
|
2015-07-19 20:51:58 -04:00
|
|
|
width: 100%;
|
2015-07-12 20:51:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MemberList h2 {
|
2015-07-14 07:11:01 -04:00
|
|
|
margin-top: 0px;
|
2015-07-12 20:51:24 -04:00
|
|
|
}
|