2021-07-23 15:46:20 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-07-23 15:46:20 +08:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-07-23 15:46:20 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_JoinRuleDropdown {
|
|
|
|
margin-bottom: 8px;
|
2023-06-29 18:30:25 +08:00
|
|
|
font: var(--cpd-font-body-md-regular);
|
2021-08-12 17:27:12 +08:00
|
|
|
color: $primary-content;
|
2021-07-23 15:46:20 +08:00
|
|
|
|
|
|
|
.mx_Dropdown_option {
|
2023-06-29 18:30:25 +08:00
|
|
|
font: var(--cpd-font-body-md-regular);
|
2021-07-23 15:46:20 +08:00
|
|
|
line-height: $font-32px;
|
|
|
|
height: 32px;
|
|
|
|
min-height: 32px;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
padding-left: 30px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
left: 6px;
|
|
|
|
top: 8px;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
2021-08-12 17:30:35 +08:00
|
|
|
background-color: $secondary-content;
|
2021-07-23 15:46:20 +08:00
|
|
|
}
|
2023-07-10 16:01:03 +08:00
|
|
|
|
|
|
|
&.mx_JoinRuleDropdown_knock::before {
|
|
|
|
content: normal;
|
|
|
|
}
|
2021-07-23 15:46:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_JoinRuleDropdown_invite::before {
|
2023-01-05 16:19:54 +08:00
|
|
|
box-sizing: border-box;
|
2021-07-23 15:46:20 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/lock.svg");
|
|
|
|
mask-size: contain;
|
2023-01-05 16:19:54 +08:00
|
|
|
padding: 1px;
|
2021-07-23 15:46:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_JoinRuleDropdown_public::before {
|
|
|
|
mask-image: url("$(res)/img/globe.svg");
|
|
|
|
mask-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_JoinRuleDropdown_restricted::before {
|
2022-03-25 03:51:18 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/group-members.svg");
|
2021-07-23 15:46:20 +08:00
|
|
|
mask-size: contain;
|
|
|
|
}
|
2023-07-10 16:01:03 +08:00
|
|
|
|
|
|
|
.mx_JoinRuleDropdown_icon {
|
|
|
|
color: $secondary-content;
|
|
|
|
position: absolute;
|
|
|
|
left: 6px;
|
|
|
|
top: 8px;
|
|
|
|
}
|
2021-07-23 15:46:20 +08:00
|
|
|
}
|