From 7d912d82dee330557545de6a9173f0ad99420907 Mon Sep 17 00:00:00 2001 From: Sean Date: Tue, 14 Jul 2020 15:10:01 +0200 Subject: [PATCH] Fix clicking behind conference bar Fixes an issue with the live stream. Clicks in the background were falsely cought. --- client/src/app/shared/components/jitsi/jitsi.component.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/src/app/shared/components/jitsi/jitsi.component.scss b/client/src/app/shared/components/jitsi/jitsi.component.scss index b2d1f89f4..a257d0092 100644 --- a/client/src/app/shared/components/jitsi/jitsi.component.scss +++ b/client/src/app/shared/components/jitsi/jitsi.component.scss @@ -43,6 +43,7 @@ } .jitsi-integration { + pointer-events: none; z-index: 99; position: fixed; left: 0; @@ -60,6 +61,7 @@ $bar-height: 40px; .control-icon-wrapper { + pointer-events: all; z-index: 1; min-height: $bar-height; display: flex; @@ -104,6 +106,7 @@ } .list-wrapper { + pointer-events: all; min-height: $bar-height; padding-top: $wrapper-padding; border-top-right-radius: 4px;