Files
ThreadNet-Web/res/css/views/voip/_LegacyCallViewHeader.pcss
T

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

122 lines
2.6 KiB
Plaintext
Raw Normal View History

2021-08-03 15:00:11 +02:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2021, 2022 Šimon Brandner <simon.bra.ag@gmail.com>
2021-08-03 15:00:11 +02:00
Copyright 2021 The Matrix.org Foundation C.I.C.
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-08-03 15:00:11 +02:00
*/
.mx_LegacyCallViewHeader {
2021-08-03 15:00:11 +02:00
height: 44px;
display: flex;
flex-direction: row;
align-items: center;
2022-05-04 17:16:38 +02:00
justify-content: space-between;
2021-08-03 15:00:11 +02:00
flex-shrink: 0;
2022-05-04 17:16:38 +02:00
width: 100%;
&.mx_LegacyCallViewHeader_pip {
cursor: grab;
}
2021-08-03 15:00:11 +02:00
}
.mx_LegacyCallViewHeader_text {
2021-08-03 15:00:11 +02:00
font-size: 1.2rem;
font-weight: bold;
vertical-align: middle;
}
.mx_LegacyCallViewHeader_secondaryCallInfo {
2021-08-03 15:00:11 +02:00
&::before {
content: "·";
margin-left: 6px;
margin-right: 6px;
}
}
.mx_LegacyCallViewHeader_controls {
2021-08-03 15:00:11 +02:00
margin-left: auto;
display: flex;
gap: 5px;
2021-08-03 15:00:11 +02:00
}
.mx_LegacyCallViewHeader_button {
2021-08-03 15:00:11 +02:00
display: inline-block;
vertical-align: middle;
cursor: pointer;
&::before {
content: "";
display: inline-block;
height: 20px;
width: 20px;
vertical-align: middle;
2021-08-12 11:30:35 +02:00
background-color: $secondary-content;
2021-08-03 15:00:11 +02:00
mask-repeat: no-repeat;
mask-size: contain;
mask-position: center;
}
&.mx_LegacyCallViewHeader_button_fullscreen {
&::before {
mask-image: url("@vector-im/compound-design-tokens/icons/expand.svg");
}
2021-08-03 15:00:11 +02:00
}
&.mx_LegacyCallViewHeader_button_pin {
&::before {
mask-image: url("$(res)/img/element-icons/room/pin-upright.svg");
}
}
&.mx_LegacyCallViewHeader_button_expand {
&::before {
mask-image: url("@vector-im/compound-design-tokens/icons/pop-out.svg");
}
2021-08-03 15:00:11 +02:00
}
}
.mx_LegacyCallViewHeader_callInfo {
2021-08-03 15:00:11 +02:00
margin-left: 12px;
margin-right: 16px;
2022-01-14 11:37:30 +01:00
overflow: hidden;
2021-08-03 15:00:11 +02:00
}
.mx_LegacyCallViewHeader_roomName {
2021-08-03 15:00:11 +02:00
font-weight: bold;
font-size: 12px;
line-height: initial;
height: 15px;
2022-01-14 11:37:30 +01:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2021-08-03 15:00:11 +02:00
}
.mx_LegacyCallView_secondaryCall_roomName {
2021-08-03 15:00:11 +02:00
margin-left: 4px;
}
.mx_LegacyCallViewHeader_icon {
2021-08-03 15:00:11 +02:00
display: inline-block;
margin-right: 6px;
height: 16px;
width: 16px;
vertical-align: middle;
&::before {
content: "";
display: inline-block;
vertical-align: top;
height: 16px;
width: 16px;
2021-08-12 11:30:35 +02:00
background-color: $secondary-content;
2021-08-03 15:00:11 +02:00
mask-repeat: no-repeat;
mask-size: contain;
mask-position: center;
mask-image: url("$(res)/img/element-icons/call/voice-call.svg");
}
}