fix: Lock thumbnails and timeline when UX is locked for calls (#2487)

This commit is contained in:
Dermot Duffy
2026-06-30 17:45:13 -07:00
committed by dermotduffy
parent abcba884e5
commit 9b750953ae
8 changed files with 50 additions and 13 deletions
+4 -5
View File
@@ -1,8 +1,7 @@
// Shared styling for components that reflect a `locked` host attribute (set by
// Lit when the consumer-facing `locked` property is true). Dims the host and
// disables pointer interaction without removing it from layout, so the element
// stays in place during mic mute/unmute transitions.
:host([locked]) {
// The shared definition of the "locked" appearance: dimmed and
// non-interactive, without removing the element from layout (so it holds its
// place during lock/unlock transitions).
@mixin style {
opacity: 0.4;
pointer-events: none;
}