2021-06-12 08:09:51 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
Copyright 2021, 2022 Šimon Brandner <simon.bra.ag@gmail.com>
|
2021-06-12 08:09:51 +02:00
|
|
|
|
2024-09-09 15:57:16 +02: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-06-12 08:09:51 +02:00
|
|
|
*/
|
|
|
|
|
2022-08-30 21:13:39 +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
|
|
|
|
2021-07-22 09:50:56 +02:00
|
|
|
width: 20%;
|
2022-05-04 17:16:38 +02:00
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
2021-07-22 09:06:20 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 21:13:39 +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
|
|
|
}
|