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

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

43 lines
925 B
Plaintext
Raw Normal View History

2021-06-12 08:09:51 +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-06-12 08:09:51 +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-06-12 08:09:51 +02:00
*/
.mx_LegacyCallViewSidebar {
2021-06-12 08:09:51 +02:00
position: absolute;
2022-05-04 17:16:38 +02:00
right: 10px;
2021-07-22 09:06:20 +02:00
2022-05-04 17:16:38 +02:00
width: 20%;
height: 100%;
2021-07-22 10:03:22 +02:00
overflow: auto;
2021-06-12 08:09:51 +02:00
display: flex;
2022-05-04 17:16:38 +02:00
flex-direction: column;
justify-content: center;
2021-07-22 09:06:20 +02:00
align-items: flex-end;
gap: 12px;
2021-07-21 17:45:21 +02:00
2021-07-22 09:06:20 +02:00
> .mx_VideoFeed {
2021-07-21 18:14:21 +02:00
width: 100%;
2021-08-22 10:10:05 +02:00
border-radius: 4px;
2021-07-21 18:14:21 +02:00
&.mx_VideoFeed_voice {
display: flex;
align-items: center;
justify-content: center;
2021-11-15 18:24:11 +01:00
background-color: $video-feed-secondary-background;
2021-07-21 18:14:21 +02:00
}
}
&.mx_LegacyCallViewSidebar_pipMode {
2021-07-21 17:45:21 +02:00
top: 16px;
bottom: unset;
2021-07-22 09:06:20 +02:00
justify-content: flex-end;
gap: 4px;
2021-07-21 17:45:21 +02:00
}
2021-06-12 08:09:51 +02:00
}