2022-05-05 05:02:06 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-05-05 05:02:06 +08:00
|
|
|
Copyright 2022 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.
|
2022-05-05 05:02:06 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_RoomInfoLine {
|
|
|
|
color: $secondary-content;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
height: 1.2em;
|
|
|
|
mask-position-y: center;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
background-color: $tertiary-content;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_RoomInfoLine_public::before {
|
|
|
|
width: 12px;
|
|
|
|
mask-size: 12px;
|
|
|
|
mask-image: url("$(res)/img/globe.svg");
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_RoomInfoLine_private::before {
|
2022-11-29 12:22:52 +08:00
|
|
|
width: 10px;
|
|
|
|
mask-size: 10px;
|
2022-05-05 05:02:06 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/lock.svg");
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_RoomInfoLine_video::before {
|
|
|
|
width: 16px;
|
|
|
|
mask-size: 16px;
|
|
|
|
mask-image: url("$(res)/img/element-icons/call/video-call.svg");
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomInfoLine_members {
|
|
|
|
color: inherit;
|
2024-03-05 12:25:47 +08:00
|
|
|
text-decoration: inherit;
|
|
|
|
font-weight: inherit;
|
2022-05-05 05:02:06 +08:00
|
|
|
|
|
|
|
&::before {
|
2022-07-27 21:39:29 +08:00
|
|
|
content: "·"; /* visual separator */
|
2022-05-05 05:02:06 +08:00
|
|
|
margin: 0 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|