Files
ThreadNet-Web/res/css/views/toasts/_IncomingLegacyCallToast.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

137 lines
3.9 KiB
Plaintext
Raw Normal View History

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