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

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

83 lines
2.0 KiB
Plaintext
Raw Normal View History

2020-10-30 13:47:43 +00:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2021, 2022 Šimon Brandner <simon.bra.ag@gmail.com>
Copyright 2015, 2016 , 2020, 2021 The Matrix.org Foundation C.I.C.
2020-10-30 13:47:43 +00:00
2024-09-09 14:57:16 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
2020-10-30 13:47:43 +00:00
*/
2021-07-22 09:06:20 +02:00
.mx_VideoFeed {
2021-07-29 15:05:26 +02:00
overflow: hidden;
position: relative;
2021-08-19 11:05:08 +02:00
box-sizing: border-box;
border: transparent 2px solid;
2021-08-22 10:10:05 +02:00
display: flex;
2022-05-04 17:16:38 +02:00
border-radius: 4px;
&.mx_VideoFeed_secondary {
position: absolute;
right: 24px;
bottom: 72px;
width: 20%;
}
2021-07-22 09:06:20 +02:00
&.mx_VideoFeed_voice {
background-color: $inverted-bg-color;
2022-05-04 17:16:38 +02:00
display: flex;
justify-content: center;
align-items: center;
&:not(.mx_VideoFeed_primary) {
aspect-ratio: 16 / 9;
}
2021-07-22 09:06:20 +02:00
}
2021-07-29 15:05:26 +02:00
.mx_VideoFeed_video {
2022-05-04 17:16:38 +02:00
height: 100%;
2021-07-29 15:05:26 +02:00
width: 100%;
2022-05-04 17:16:38 +02:00
border-radius: 4px;
background-color: #000000;
2021-07-29 15:05:26 +02:00
&.mx_VideoFeed_video_mirror {
transform: scale(-1, 1);
}
}
.mx_VideoFeed_mic {
position: absolute;
2022-05-04 17:16:38 +02:00
left: 6px;
bottom: 6px;
2021-07-29 15:05:26 +02:00
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
background-color: rgba(0, 0, 0, 0.5); /* Same on both themes */
2021-07-29 15:05:26 +02:00
border-radius: 100%;
&::before {
position: absolute;
content: "";
2023-01-02 14:36:58 +01:00
width: 17px;
height: 17px;
2021-07-29 15:05:26 +02:00
mask-repeat: no-repeat;
mask-size: contain;
mask-position: center;
background-color: white; /* Same on both themes */
2021-07-29 15:05:26 +02:00
border-radius: 7px;
}
&.mx_VideoFeed_mic_muted::before {
mask-image: url("@vector-im/compound-design-tokens/icons/mic-off-solid.svg");
2021-07-29 15:05:26 +02:00
}
&.mx_VideoFeed_mic_unmuted::before {
mask-image: url("@vector-im/compound-design-tokens/icons/mic-on-solid.svg");
2021-07-29 15:05:26 +02:00
}
2021-07-22 09:06:20 +02:00
}
}