2018-04-12 01:23:35 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 01:23:35 +02:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 01:23:35 +02:00
|
|
|
*/
|
|
|
|
|
2022-03-23 00:07:37 +01:00
|
|
|
.mx_MemberList {
|
2018-04-12 01:23:35 +02:00
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-03-12 16:38:30 +01:00
|
|
|
min-height: 0;
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2018-12-10 17:46:22 +01:00
|
|
|
.mx_Spinner {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
|
2020-07-13 23:13:29 +02:00
|
|
|
.mx_SearchBox {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2018-12-10 17:46:22 +01:00
|
|
|
h2 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $h3-color;
|
2023-06-29 12:30:25 +02:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-13px;
|
2018-12-10 17:46:22 +01:00
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 12px;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2019-03-12 16:38:30 +01:00
|
|
|
|
|
|
|
.mx_AutoHideScrollbar {
|
|
|
|
flex: 1 1 0;
|
2024-10-03 10:59:41 +02:00
|
|
|
margin-top: var(--cpd-space-3x);
|
2019-03-12 16:38:30 +01:00
|
|
|
}
|
2018-04-12 01:23:35 +02: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 04:56:10 +01:00
|
|
|
.mx_MemberList_query {
|
2020-12-08 21:35:03 +01:00
|
|
|
height: 16px;
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* stricter rule to override the one in _common.pcss */
|
2020-07-16 16:40:31 +02:00
|
|
|
&[type="text"] {
|
|
|
|
font-size: $font-12px;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MemberList_wrapper {
|
2018-10-24 13:50:58 +02:00
|
|
|
padding: 10px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-07-20 15:47:06 +02:00
|
|
|
.mx_MemberList_invite {
|
2023-10-20 15:30:37 +02:00
|
|
|
margin: 0 var(--cpd-space-2x);
|
2023-10-20 22:26:32 +02:00
|
|
|
width: calc(100% - var(--cpd-space-4x));
|
2018-12-10 17:46:22 +01:00
|
|
|
}
|