mirror of https://github.com/vector-im/riot-web
74 lines
2.0 KiB
Plaintext
74 lines
2.0 KiB
Plaintext
/*
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
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_JoinRuleDropdown {
|
|
margin-bottom: 8px;
|
|
font: var(--cpd-font-body-md-regular);
|
|
color: $primary-content;
|
|
|
|
.mx_Dropdown_option {
|
|
font: var(--cpd-font-body-md-regular);
|
|
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;
|
|
background-color: $secondary-content;
|
|
}
|
|
|
|
&.mx_JoinRuleDropdown_knock::before {
|
|
content: normal;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_JoinRuleDropdown_invite::before {
|
|
box-sizing: border-box;
|
|
mask-image: url("$(res)/img/element-icons/lock.svg");
|
|
mask-size: contain;
|
|
padding: 1px;
|
|
}
|
|
|
|
.mx_JoinRuleDropdown_public::before {
|
|
mask-image: url("$(res)/img/globe.svg");
|
|
mask-size: 12px;
|
|
}
|
|
|
|
.mx_JoinRuleDropdown_restricted::before {
|
|
mask-image: url("$(res)/img/element-icons/group-members.svg");
|
|
mask-size: contain;
|
|
}
|
|
|
|
.mx_JoinRuleDropdown_icon {
|
|
color: $secondary-content;
|
|
position: absolute;
|
|
left: 6px;
|
|
top: 8px;
|
|
}
|
|
}
|