Skip to content

Commit

Permalink
ov-components: Fixed video poster on iPhone
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed May 22, 2024
1 parent 52c6126 commit c0bcb95
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
width: 100%;
background-color: #000000;
position: absolute;
z-index: 888;
z-index: 999;
}

.initial {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
.nickname {
padding: 0px;
position: absolute;
z-index: 999;
z-index: 9999;
border-radius: var(--ov-video-radius);
color: var(--ov-text-color);
font-family: 'Roboto', 'RobotoDraft', Helvetica, Arial, sans-serif;
Expand Down Expand Up @@ -39,7 +39,7 @@
#audio-wave-container {
position: absolute;
right: 0;
z-index: 2;
z-index: 9999;
padding: 5px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,14 @@
</div>

<div *ngIf="!isMinimal && showSettingsButton" id="settings-container" class="videoButtons">

<button
mat-icon-button
(click)="toggleVideoMenu($event)"
matTooltip="{{ 'STREAM.SETTINGS' | translate }}"
matTooltipPosition="above"
aria-label="Video settings menu"
id="video-settings-btn-{{this._stream.streamManager?.stream?.typeOfVideo}}"
id="video-settings-btn-{{ this._stream.streamManager?.stream?.typeOfVideo }}"
>
<mat-icon>more_vert</mat-icon>
</button>
Expand All @@ -68,7 +69,12 @@
<span *ngIf="videoSizeIcon === videoSizeIconEnum.NORMAL">{{ 'STREAM.ZOOM_OUT' | translate }}</span>
<span *ngIf="videoSizeIcon === videoSizeIconEnum.BIG">{{ 'STREAM.ZOOM_IN' | translate }}</span>
</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>
<span *ngIf="!_stream.participant.isMutedForcibly">{{ 'STREAM.MUTE_SOUND' | translate }}</span>

Expand Down

0 comments on commit c0bcb95

Please sign in to comment.