2018-04-12 01:23:35 +02: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 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;
|
|
|
|
font-weight: 600;
|
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;
|
|
|
|
}
|
2021-03-02 10:51:11 +01:00
|
|
|
|
|
|
|
.mx_RightPanel_scopeHeader {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* vertically align with position on other right panel cards */
|
|
|
|
/* to prevent it bouncing as user navigates right panel */
|
2021-03-02 10:51:11 +01:00
|
|
|
margin-top: -8px;
|
|
|
|
}
|
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 {
|
2018-10-24 13:50:58 +02:00
|
|
|
flex: 0 0 auto;
|
|
|
|
position: relative;
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent;
|
2018-10-24 13:50:58 +02:00
|
|
|
border-radius: 4px;
|
2020-07-13 23:13:29 +02:00
|
|
|
margin: 5px 9px 9px;
|
2018-11-06 14:47:11 +01:00
|
|
|
display: flex;
|
2019-01-30 16:24:25 +01:00
|
|
|
justify-content: center;
|
2018-12-10 17:46:22 +01:00
|
|
|
color: $button-fg-color;
|
|
|
|
font-weight: 600;
|
2018-10-24 13:50:58 +02:00
|
|
|
}
|
2018-12-10 17:46:22 +01:00
|
|
|
|
2019-05-11 20:45:24 +02:00
|
|
|
.mx_MemberList_invite.mx_AccessibleButton_disabled {
|
2021-11-29 13:52:09 +01:00
|
|
|
background-color: $info-plinth-fg-color;
|
2019-05-11 20:45:24 +02:00
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2018-12-10 17:46:22 +01:00
|
|
|
.mx_MemberList_invite span {
|
2020-10-06 14:54:21 +02:00
|
|
|
padding: 8px 0;
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
2020-10-08 11:01:05 +02:00
|
|
|
background-color: $button-fg-color;
|
2020-10-06 14:54:21 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/room/invite.svg');
|
|
|
|
mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: 20px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2018-12-10 17:46:22 +01:00
|
|
|
}
|