2021-06-12 09:09:51 +03:00
|
|
|
/*
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
Copyright 2021, 2022 Šimon Brandner <simon.bra.ag@gmail.com>
|
2021-06-12 09:09:51 +03:00
|
|
|
|
2024-09-09 16:57:16 +03: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 09:09:51 +03:00
|
|
|
*/
|
|
|
|
|
2022-08-30 22:13:39 +03:00
|
|
|
.mx_LegacyCallViewSidebar {
|
2021-06-12 09:09:51 +03:00
|
|
|
position: absolute;
|
2022-05-04 18:16:38 +03:00
|
|
|
right: 10px;
|
2021-07-22 10:06:20 +03:00
|
|
|
|
2021-07-22 10:50:56 +03:00
|
|
|
width: 20%;
|
2022-05-04 18:16:38 +03:00
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
2021-07-22 10:06:20 +03:00
|
|
|
|
2021-06-12 09:09:51 +03:00
|
|
|
display: flex;
|
2022-05-04 18:16:38 +03:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2021-07-22 10:06:20 +03:00
|
|
|
align-items: flex-end;
|
|
|
|
gap: 12px;
|
2021-07-21 18:45:21 +03:00
|
|
|
|
2021-07-22 10:06:20 +03:00
|
|
|
> .mx_VideoFeed {
|
2021-07-21 19:14:21 +03:00
|
|
|
width: 100%;
|
2021-08-22 11:10:05 +03:00
|
|
|
border-radius: 4px;
|
2021-07-21 19:14:21 +03:00
|
|
|
|
|
|
|
&.mx_VideoFeed_voice {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-11-15 20:24:11 +03:00
|
|
|
|
|
|
|
background-color: $video-feed-secondary-background;
|
2021-07-21 19:14:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 22:13:39 +03:00
|
|
|
&.mx_LegacyCallViewSidebar_pipMode {
|
2021-07-21 18:45:21 +03:00
|
|
|
top: 16px;
|
|
|
|
bottom: unset;
|
2021-07-22 10:06:20 +03:00
|
|
|
justify-content: flex-end;
|
|
|
|
gap: 4px;
|
2021-07-21 18:45:21 +03:00
|
|
|
}
|
2021-06-12 09:09:51 +03:00
|
|
|
}
|