2022-10-18 03:36:17 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-10-18 03:36:17 +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-10-18 03:36:17 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_RoomCallBanner {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: $spacing-12 $spacing-16;
|
|
|
|
|
|
|
|
color: $primary-content;
|
|
|
|
background-color: $system;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomCallBanner_text {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomCallBanner_label {
|
|
|
|
color: $primary-content;
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2022-10-18 03:36:17 +08:00
|
|
|
padding-right: $spacing-8;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
display: inline-block;
|
2022-10-20 03:11:13 +08:00
|
|
|
vertical-align: middle;
|
2022-10-18 03:36:17 +08:00
|
|
|
content: "";
|
|
|
|
background-color: $secondary-content;
|
|
|
|
mask-size: 16px;
|
2022-10-20 03:11:13 +08:00
|
|
|
mask-position-y: center;
|
2022-10-18 03:36:17 +08:00
|
|
|
width: 16px;
|
2022-10-20 03:11:13 +08:00
|
|
|
height: 1.2em; /* to match line height */
|
|
|
|
margin-right: 8px;
|
2022-10-18 03:36:17 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/call/video-call.svg");
|
|
|
|
}
|
|
|
|
}
|