mirror of https://github.com/OpenVidu/openvidu.git
ov-components: Fixed video poster on iPhone
parent
52c6126b8d
commit
c0bcb95282
|
@ -3,7 +3,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 888;
|
z-index: 999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.initial {
|
.initial {
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
.nickname {
|
.nickname {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 999;
|
z-index: 9999;
|
||||||
border-radius: var(--ov-video-radius);
|
border-radius: var(--ov-video-radius);
|
||||||
color: var(--ov-text-color);
|
color: var(--ov-text-color);
|
||||||
font-family: 'Roboto', 'RobotoDraft', Helvetica, Arial, sans-serif;
|
font-family: 'Roboto', 'RobotoDraft', Helvetica, Arial, sans-serif;
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
#audio-wave-container {
|
#audio-wave-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
z-index: 2;
|
z-index: 9999;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -51,6 +51,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div *ngIf="!isMinimal && showSettingsButton" id="settings-container" class="videoButtons">
|
<div *ngIf="!isMinimal && showSettingsButton" id="settings-container" class="videoButtons">
|
||||||
|
|
||||||
<button
|
<button
|
||||||
mat-icon-button
|
mat-icon-button
|
||||||
(click)="toggleVideoMenu($event)"
|
(click)="toggleVideoMenu($event)"
|
||||||
|
@ -68,7 +69,12 @@
|
||||||
<span *ngIf="videoSizeIcon === videoSizeIconEnum.NORMAL">{{ 'STREAM.ZOOM_OUT' | translate }}</span>
|
<span *ngIf="videoSizeIcon === videoSizeIconEnum.NORMAL">{{ 'STREAM.ZOOM_OUT' | translate }}</span>
|
||||||
<span *ngIf="videoSizeIcon === videoSizeIconEnum.BIG">{{ 'STREAM.ZOOM_IN' | translate }}</span>
|
<span *ngIf="videoSizeIcon === videoSizeIconEnum.BIG">{{ 'STREAM.ZOOM_IN' | translate }}</span>
|
||||||
</button>
|
</button>
|
||||||
<button mat-menu-item id="sound-btn" *ngIf="!this._stream.participant.local && this._stream.type === videoTypeEnum.CAMERA" (click)="toggleMuteForcibly()">
|
<button
|
||||||
|
mat-menu-item
|
||||||
|
id="sound-btn"
|
||||||
|
*ngIf="!this._stream.participant.local && this._stream.type === videoTypeEnum.CAMERA"
|
||||||
|
(click)="toggleMuteForcibly()"
|
||||||
|
>
|
||||||
<mat-icon *ngIf="!_stream.participant.isMutedForcibly">volume_up</mat-icon>
|
<mat-icon *ngIf="!_stream.participant.isMutedForcibly">volume_up</mat-icon>
|
||||||
<span *ngIf="!_stream.participant.isMutedForcibly">{{ 'STREAM.MUTE_SOUND' | translate }}</span>
|
<span *ngIf="!_stream.participant.isMutedForcibly">{{ 'STREAM.MUTE_SOUND' | translate }}</span>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue