More fixes
All checks were successful
Deploy SingleChat / deploy (push) Successful in 23s

This commit is contained in:
Torsten Schulz (local)
2026-06-17 15:44:22 +02:00
parent 5d4129b5b3
commit c46e64367d
3 changed files with 73 additions and 4 deletions

View File

@@ -19,7 +19,15 @@
:key="session.callId"
class="video-dock-card"
>
<div class="video-card-frame">
<div
class="video-card-frame video-card-frame-clickable"
role="button"
tabindex="0"
:title="`${session.withUserName} in den Vordergrund holen`"
@click="chatStore.bringVideoSessionToFront(session.callId)"
@keyup.enter="chatStore.bringVideoSessionToFront(session.callId)"
@keyup.space.prevent="chatStore.bringVideoSessionToFront(session.callId)"
>
<VideoSessionSurface :session="session" :muted="true" />
</div>
<div class="video-card-meta">
@@ -133,6 +141,10 @@ function statusLabel(status) {
position: relative;
}
.video-card-frame-clickable {
cursor: pointer;
}
.video-card-frame video {
width: 100%;
height: 100%;