* Tweak rendering of icons in legacy video feed Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove unused classes Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in face pile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in overflow tile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in room search view Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in top unread messages bar Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in space basic settings Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in thread summary tile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in legacy room tile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in incoming call toast Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in labs jump to date Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in field validation Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in mini avatar uploader Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in info tooltip Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in network dropdown Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
68 lines
1.5 KiB
Plaintext
68 lines
1.5 KiB
Plaintext
/*
|
|
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.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_VideoFeed {
|
|
overflow: hidden;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
border: transparent 2px solid;
|
|
display: flex;
|
|
border-radius: 4px;
|
|
|
|
&.mx_VideoFeed_secondary {
|
|
position: absolute;
|
|
right: 24px;
|
|
bottom: 72px;
|
|
width: 20%;
|
|
}
|
|
|
|
&.mx_VideoFeed_voice {
|
|
background-color: $inverted-bg-color;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
&:not(.mx_VideoFeed_primary) {
|
|
aspect-ratio: 16 / 9;
|
|
}
|
|
}
|
|
|
|
.mx_VideoFeed_video {
|
|
height: 100%;
|
|
width: 100%;
|
|
border-radius: 4px;
|
|
background-color: #000000;
|
|
|
|
&.mx_VideoFeed_video_mirror {
|
|
transform: scale(-1, 1);
|
|
}
|
|
}
|
|
|
|
.mx_VideoFeed_mic {
|
|
position: absolute;
|
|
left: 6px;
|
|
bottom: 6px;
|
|
z-index: 1;
|
|
|
|
width: 24px;
|
|
height: 24px;
|
|
|
|
background-color: rgb(0, 0, 0, 0.5); /* Same on both themes */
|
|
border-radius: 100%;
|
|
|
|
svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
padding: 4px;
|
|
color: white; /* Same on both themes */
|
|
}
|
|
}
|
|
}
|