2018-04-12 07:23:35 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 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.
|
|
|
|
*/
|
|
|
|
|
2022-03-23 07:07:37 +08:00
|
|
|
.mx_MemberList {
|
2018-04-12 07:23:35 +08:00
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-03-12 23:38:30 +08:00
|
|
|
min-height: 0;
|
2024-07-09 19:36:50 +08:00
|
|
|
margin-top: 24px;
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2018-12-11 00:46:22 +08:00
|
|
|
.mx_Spinner {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
|
2020-07-14 05:13:29 +08:00
|
|
|
.mx_SearchBox {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2018-12-11 00:46:22 +08:00
|
|
|
h2 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $h3-color;
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-13px;
|
2018-12-11 00:46:22 +08:00
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 12px;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2019-03-12 23:38:30 +08:00
|
|
|
|
|
|
|
.mx_AutoHideScrollbar {
|
|
|
|
flex: 1 1 0;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MemberList_chevron {
|
|
|
|
position: absolute;
|
|
|
|
right: 35px;
|
|
|
|
margin-top: -15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MemberList_border {
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
order: 1;
|
|
|
|
flex: 1 1 0px;
|
|
|
|
}
|
|
|
|
|
2020-12-06 11:56:10 +08:00
|
|
|
.mx_MemberList_query {
|
2020-12-09 04:35:03 +08:00
|
|
|
height: 16px;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* stricter rule to override the one in _common.pcss */
|
2020-07-16 22:40:31 +08:00
|
|
|
&[type="text"] {
|
|
|
|
font-size: $font-12px;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MemberList_wrapper {
|
2018-10-24 19:50:58 +08:00
|
|
|
padding: 10px;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2020-07-20 21:47:06 +08:00
|
|
|
.mx_MemberList_invite {
|
2023-10-20 21:30:37 +08:00
|
|
|
margin: 0 var(--cpd-space-2x);
|
2023-10-21 04:26:32 +08:00
|
|
|
width: calc(100% - var(--cpd-space-4x));
|
2018-12-11 00:46:22 +08:00
|
|
|
}
|