2021-07-24 19:05:14 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-07-24 19:05:14 +08:00
|
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2021-07-24 19:05:14 +08:00
|
|
|
|
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-24 19:05:14 +08:00
|
|
|
*/
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_IncomingLegacyCallToast {
|
2021-07-26 18:21:58 +08:00
|
|
|
display: flex;
|
2021-07-24 20:04:22 +08:00
|
|
|
flex-direction: row;
|
2024-05-06 16:28:02 +08:00
|
|
|
align-items: flex-start;
|
2022-07-27 21:39:29 +08:00
|
|
|
pointer-events: initial; /* restore pointer events so the user can accept/decline */
|
2021-07-24 19:05:14 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_IncomingLegacyCallToast_content {
|
2021-07-24 19:05:14 +08:00
|
|
|
display: flex;
|
2021-07-24 20:04:22 +08:00
|
|
|
flex-direction: column;
|
2021-07-25 02:59:15 +08:00
|
|
|
margin-left: 8px;
|
2021-07-24 19:05:14 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallEvent_caller {
|
2021-07-24 19:05:14 +08:00
|
|
|
font-weight: bold;
|
2021-07-25 02:59:15 +08:00
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-18px;
|
|
|
|
|
2021-08-16 15:34:28 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
2021-07-25 02:59:15 +08:00
|
|
|
margin-top: 2px;
|
2021-08-16 15:34:28 +08:00
|
|
|
margin-right: 6px;
|
|
|
|
|
|
|
|
max-width: 200px;
|
2021-07-24 19:05:14 +08:00
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallEvent_type {
|
2021-07-25 02:59:15 +08:00
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-15px;
|
2021-08-12 17:53:54 +08:00
|
|
|
color: $tertiary-content;
|
2021-07-25 02:59:15 +08:00
|
|
|
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
2021-07-25 01:30:37 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2021-07-25 02:59:15 +08:00
|
|
|
align-items: center;
|
2021-07-25 01:30:37 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallEvent_type_icon {
|
2021-07-25 01:30:37 +08:00
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
margin-right: 6px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
height: inherit;
|
|
|
|
width: inherit;
|
2021-08-12 17:53:54 +08:00
|
|
|
background-color: $tertiary-content;
|
2021-07-25 01:30:37 +08:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&.mx_IncomingLegacyCallToast_content_voice {
|
|
|
|
.mx_LegacyCallEvent_type .mx_LegacyCallEvent_type_icon::before,
|
|
|
|
.mx_IncomingLegacyCallToast_buttons .mx_IncomingLegacyCallToast_button_accept span::before {
|
2021-07-25 01:12:12 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/call/voice-call.svg");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&.mx_IncomingLegacyCallToast_content_video {
|
|
|
|
.mx_LegacyCallEvent_type .mx_LegacyCallEvent_type_icon::before,
|
|
|
|
.mx_IncomingLegacyCallToast_buttons .mx_IncomingLegacyCallToast_button_accept span::before {
|
2021-07-25 01:12:12 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/call/video-call.svg");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_IncomingLegacyCallToast_buttons {
|
2023-04-28 22:56:26 +08:00
|
|
|
margin-top: 8px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 12px;
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_IncomingLegacyCallToast_button {
|
2023-04-28 22:56:26 +08:00
|
|
|
@mixin LegacyCallButton;
|
|
|
|
padding: 0px 8px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
font-size: $font-15px;
|
|
|
|
|
2021-07-25 01:12:12 +08:00
|
|
|
span {
|
2023-04-28 22:56:26 +08:00
|
|
|
padding: 8px 0;
|
2021-07-25 01:12:12 +08:00
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&.mx_IncomingLegacyCallToast_button_accept span::before {
|
2021-07-25 02:59:15 +08:00
|
|
|
mask-size: 13px;
|
|
|
|
width: 13px;
|
|
|
|
height: 13px;
|
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&.mx_IncomingLegacyCallToast_button_decline span::before {
|
2021-07-25 01:12:12 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/call/hangup.svg");
|
2021-07-25 02:59:15 +08:00
|
|
|
mask-size: 16px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2021-07-25 01:12:12 +08:00
|
|
|
}
|
2021-07-25 00:59:54 +08:00
|
|
|
}
|
2021-07-24 19:05:14 +08:00
|
|
|
}
|
2021-07-25 02:39:44 +08:00
|
|
|
}
|
2021-07-24 19:05:14 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_IncomingLegacyCallToast_iconButton {
|
2021-07-25 02:39:44 +08:00
|
|
|
display: flex;
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
|
|
|
|
height: inherit;
|
|
|
|
width: inherit;
|
2021-08-12 17:53:54 +08:00
|
|
|
background-color: $tertiary-content;
|
2021-07-25 02:39:44 +08:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-position: center;
|
2021-07-24 19:05:14 +08:00
|
|
|
}
|
2021-07-25 02:39:44 +08:00
|
|
|
}
|
2021-07-24 19:05:14 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_IncomingLegacyCallToast_silence::before {
|
2021-07-25 02:39:44 +08:00
|
|
|
mask-image: url("$(res)/img/voip/silence.svg");
|
|
|
|
}
|
2021-07-24 19:05:14 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_IncomingLegacyCallToast_unSilence::before {
|
2021-07-25 02:39:44 +08:00
|
|
|
mask-image: url("$(res)/img/voip/un-silence.svg");
|
2021-07-24 19:05:14 +08:00
|
|
|
}
|
|
|
|
}
|