This commit is contained in:
@@ -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%;
|
||||
|
||||
Reference in New Issue
Block a user