Files
ThreadNet-Web/res/css/views/messages/_LegacyCallEvent.pcss
T

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

233 lines
7.1 KiB
Plaintext
Raw Normal View History

2021-05-29 21:22:58 +02:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2021-05-29 21:22:58 +02:00
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
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-05-29 21:22:58 +02:00
*/
.mx_LegacyCallEvent_wrapper {
2021-05-29 21:22:58 +02:00
display: flex;
2021-08-05 11:47:58 +02:00
width: 100%;
2021-05-29 21:22:58 +02:00
.mx_LegacyCallEvent {
display: flex;
2021-06-01 07:55:55 +02:00
flex-direction: row;
2022-04-14 20:27:29 +00:00
flex-wrap: wrap;
2021-06-01 10:03:23 +02:00
align-items: center;
2021-08-05 11:47:58 +02:00
justify-content: space-between;
2022-04-14 20:27:29 +00:00
gap: $spacing-4 0;
2022-04-14 20:27:29 +00:00
position: relative;
margin: $spacing-4 0;
padding: $spacing-12 $spacing-24;
box-sizing: border-box;
2021-08-05 11:47:58 +02:00
background-color: $dark-panel-bg-color;
border-radius: 8px;
2021-08-13 10:59:59 +02:00
width: 65%;
2022-04-14 20:27:29 +00:00
height: fit-content;
2021-06-19 20:02:51 +02:00
.mx_LegacyCallEvent_iconButton {
2021-06-19 20:02:51 +02:00
display: inline-flex;
&::before {
content: "";
height: 16px;
width: 16px;
background-color: $secondary-content;
2021-06-19 20:02:51 +02:00
mask-repeat: no-repeat;
mask-size: contain;
mask-position: center;
}
}
.mx_LegacyCallEvent_silence::before {
2025-12-08 09:27:50 +00:00
mask-image: url("@vector-im/compound-design-tokens/icons/volume-on-solid.svg");
2021-06-19 20:02:51 +02:00
}
.mx_LegacyCallEvent_unSilence::before {
2025-12-08 09:27:50 +00:00
mask-image: url("@vector-im/compound-design-tokens/icons/volume-off-solid.svg");
2021-06-19 20:02:51 +02:00
}
2021-08-05 11:47:58 +02:00
&.mx_LegacyCallEvent_voice {
.mx_LegacyCallEvent_type_icon::before,
.mx_LegacyCallEvent_content_button_callBack span::before,
.mx_LegacyCallEvent_content_button_answer span::before {
mask-image: url("@vector-im/compound-design-tokens/icons/voice-call-solid.svg");
2021-08-05 11:47:58 +02:00
}
2022-04-14 20:27:29 +00:00
&.mx_LegacyCallEvent_rejected,
&.mx_LegacyCallEvent_noAnswer {
.mx_LegacyCallEvent_type_icon::before {
mask-image: url("@vector-im/compound-design-tokens/icons/end-call.svg");
2022-04-14 20:27:29 +00:00
}
}
2021-08-05 11:47:58 +02:00
}
&.mx_LegacyCallEvent_video {
.mx_LegacyCallEvent_type_icon::before,
.mx_LegacyCallEvent_content_button_callBack span::before,
.mx_LegacyCallEvent_content_button_answer span::before {
mask-image: url("@vector-im/compound-design-tokens/icons/video-call-solid.svg");
2021-08-05 11:47:58 +02:00
}
2022-04-14 20:27:29 +00:00
&.mx_LegacyCallEvent_rejected,
&.mx_LegacyCallEvent_noAnswer {
.mx_LegacyCallEvent_type_icon::before {
mask-image: url("@vector-im/compound-design-tokens/icons/video-call-declined-solid.svg");
2022-04-14 20:27:29 +00:00
}
}
2021-08-05 11:47:58 +02:00
}
&.mx_LegacyCallEvent_missed {
&.mx_LegacyCallEvent_voice {
.mx_LegacyCallEvent_type_icon::before {
2022-04-14 20:27:29 +00:00
mask-image: url("$(res)/img/voip/missed-voice.svg");
}
}
2021-08-05 11:47:58 +02:00
&.mx_LegacyCallEvent_video {
.mx_LegacyCallEvent_type_icon::before {
mask-image: url("@vector-im/compound-design-tokens/icons/video-call-missed-solid.svg");
2022-04-14 20:27:29 +00:00
}
}
2021-08-13 11:37:17 +02:00
}
.mx_LegacyCallEvent_info {
2021-08-05 11:47:58 +02:00
display: flex;
flex-direction: row;
align-items: center;
2022-04-14 20:27:29 +00:00
width: fit-content;
max-width: 100%;
2021-08-05 11:47:58 +02:00
.mx_LegacyCallEvent_info_basic {
2021-08-05 11:47:58 +02:00
display: flex;
flex-direction: column;
2022-04-14 20:27:29 +00:00
gap: $spacing-4;
margin-left: 10px; /* To match mx_LegacyCallEvent */
2022-04-14 20:27:29 +00:00
margin-right: 10px;
2021-08-16 10:08:16 +02:00
min-width: 0;
2021-08-05 11:47:58 +02:00
.mx_LegacyCallEvent_sender {
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2022-04-14 20:27:29 +00:00
margin-bottom: $spacing-4;
2021-08-16 10:08:16 +02:00
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2021-08-05 11:47:58 +02:00
}
.mx_LegacyCallEvent_type {
2022-04-14 20:27:29 +00:00
display: flex;
align-items: center;
2021-08-05 11:47:58 +02:00
font-weight: 400;
color: $secondary-content;
2021-08-05 11:47:58 +02:00
.mx_LegacyCallEvent_type_icon {
2021-08-05 11:47:58 +02:00
height: 13px;
width: 13px;
margin-right: 5px;
&::before {
content: "";
position: absolute;
height: 13px;
width: 13px;
background-color: $secondary-content;
2021-08-05 11:47:58 +02:00
mask-repeat: no-repeat;
mask-size: contain;
}
}
}
}
}
.mx_LegacyCallEvent_content {
2021-08-05 11:47:58 +02:00
display: flex;
2022-04-14 20:27:29 +00:00
flex-wrap: wrap;
2021-08-05 11:47:58 +02:00
align-items: center;
color: $secondary-content;
font-size: $font-12px;
gap: $spacing-12; /* See mx_IncomingLegacyCallToast_buttons */
margin-inline-start: 42px; /* avatar (32px) + mx_LegacyCallEvent_info_basic margin (10px) */
2022-04-14 20:27:29 +00:00
word-break: break-word;
max-width: fit-content;
2021-08-05 11:47:58 +02:00
.mx_LegacyCallEvent_content_button {
@mixin LegacyCallButton;
2022-04-14 20:27:29 +00:00
padding: 0 $spacing-12;
font-size: inherit;
2021-08-05 11:47:58 +02:00
2022-04-04 06:34:39 +00:00
span::before {
mask-size: 16px;
width: 16px;
height: 16px;
flex-shrink: 0;
2021-08-05 11:47:58 +02:00
}
}
.mx_LegacyCallEvent_content_button_reject {
2022-04-14 20:27:29 +00:00
span::before {
mask-image: url("@vector-im/compound-design-tokens/icons/end-call.svg");
2022-04-14 20:27:29 +00:00
}
2021-08-05 11:47:58 +02:00
}
.mx_LegacyCallEvent_content_tooltip {
2021-08-05 11:47:58 +02:00
margin-right: 5px;
}
}
&.mx_LegacyCallEvent_narrow {
2021-08-05 11:47:58 +02:00
flex-direction: column;
align-items: unset;
2022-04-14 20:27:29 +00:00
gap: $spacing-4 $spacing-16;
height: unset;
min-width: 290px;
2021-08-05 11:47:58 +02:00
.mx_LegacyCallEvent_iconButton {
2021-08-05 11:47:58 +02:00
position: absolute;
margin-right: 0;
top: 12px;
right: 12px;
height: 16px;
width: 16px;
display: flex;
}
.mx_LegacyCallEvent_info {
align-items: center;
2021-08-05 11:47:58 +02:00
}
}
2021-06-01 10:03:23 +02:00
}
2021-05-29 21:22:58 +02:00
}
2022-04-14 20:27:29 +00:00
.mx_EventTile[data-layout="bubble"] {
.mx_EventTile_e2eIcon + .mx_LegacyCallEvent_wrapper {
.mx_LegacyCallEvent {
2022-04-14 20:27:29 +00:00
position: relative;
/* 5px (gap) + 14px (e2e icon size * mask-size) + 9px (margin-left of e2e icon) */
2022-04-14 20:27:29 +00:00
right: calc(5px + 14px + 9px);
}
}
}
.mx_EventTile_leftAlignedBubble {
.mx_LegacyCallEvent_wrapper {
.mx_LegacyCallEvent {
&.mx_LegacyCallEvent_narrow {
2022-04-14 20:27:29 +00:00
gap: $spacing-8 $spacing-4;
}
}
}
}
.mx_IRCLayout {
.mx_LegacyCallEvent_wrapper {
.mx_LegacyCallEvent {
margin-inline-start: $spacing-4; /* display green line */
2022-04-14 20:27:29 +00:00
}
}
}