- {#if $requestedMicrophoneState}
-

- {:else}
-

- {/if}
+
+
+
+ {#if $requestedScreenSharingState}
+

+ {:else}
+

+ {/if}
+
+
+ {#if $requestedCameraState}
+

+ {:else}
+

+ {/if}
+
+
+ {#if $requestedMicrophoneState}
+

+ {:else}
+

+ {/if}
+
diff --git a/front/src/Components/EnableCamera/EnableCameraScene.svelte b/front/src/Components/EnableCamera/EnableCameraScene.svelte
index 36e31cf6..b5b2748a 100644
--- a/front/src/Components/EnableCamera/EnableCameraScene.svelte
+++ b/front/src/Components/EnableCamera/EnableCameraScene.svelte
@@ -11,6 +11,8 @@
import {onDestroy} from "svelte";
import HorizontalSoundMeterWidget from "./HorizontalSoundMeterWidget.svelte";
import cinemaCloseImg from "../images/cinema-close.svg";
+ import cinemaImg from "../images/cinema.svg";
+ import microphoneImg from "../images/microphone.svg";
export let game: Game;
let selectedCamera : string|null = null;
@@ -86,27 +88,33 @@
@@ -190,6 +198,16 @@
font-size: 200%;
}
+ .control-group {
+ display: flex;
+ flex-direction: row;
+
+ img {
+ width: 30px;
+ margin-right: 10px;
+ }
+ }
+
.webrtcsetup{
/*position: absolute;
top: 140px;
diff --git a/front/style/style.scss b/front/style/style.scss
index 78cfcc66..ef3df5c5 100644
--- a/front/style/style.scss
+++ b/front/style/style.scss
@@ -1212,13 +1212,15 @@ div.action.danger p.action-body{
height: 100%;
pointer-events: none;
- .absolute-overlay {
- position: absolute;
+ & > div {
+ position: relative;
width: 100%;
height: 100%;
- & > * {
- position: relative;
+ & > div {
+ position: absolute;
+ width: 100%;
+ height: 100%;
}
}
}