openvidu-components: Minor styles changes

pull/707/head
csantosm 2022-02-24 10:21:58 +01:00
parent 000f21b9dd
commit b52ca52e1d
6 changed files with 16 additions and 8 deletions

View File

@ -3,14 +3,17 @@
}
.bounds {
position: absolute;
.layout {
position: relative;
left: 0;
right: 0;
top: 0;
bottom: 0;
min-width: 350px !important;
min-height: 100%;
width: inherit;
height: -webkit-fill-available;
height: -moz-available;
}
/*!

View File

@ -1,4 +1,4 @@
<div id="layout" class="bounds">
<div id="layout" class="layout">
<div
class="OT_root OT_publisher"
id="localUser"

View File

@ -6,8 +6,8 @@
.sidenav-container {
position: relative;
height: calc(100% - 80px);
min-height: calc(100% - 80px);
height: calc(100% - 70px);
min-height: calc(100% - 70px);
padding-top: 10px;
width: 100%;
overflow: hidden;
@ -30,6 +30,11 @@
min-height: -moz-available;
}
#layout-container {
height: inherit;
width: inherit;
}
.mat-drawer-container {
background-color: var(--ov-primary-color);
}
@ -38,7 +43,7 @@
background-color: var(--ov-primary-color);
min-width: 400px !important;
width: 100%;
height: 60px;
height: 70px;
}
#footer {

View File

@ -19,7 +19,7 @@
<div class="row align-items-center">
<div class="col-sm-6 col-md-6 col-lg-6 leftSection">
<div class="spinner-container" *ngIf="isLoading">
<mat-spinner></mat-spinner>
<mat-spinner [diameter]="50"></mat-spinner>
</div>
<div class="videoContainer" *ngIf="!isLoading">
<div *ngFor="let stream of localParticipant | streams">

View File

@ -214,7 +214,6 @@ export class UserSettingsComponent implements OnInit, OnDestroy {
const nickname = this.nicknameFormControl.value;
this.participantService.setNickname(this.participantService.getMyCameraConnectionId(), nickname);
this.storageSrv.setNickname(nickname);
this.participantService.updateParticipantMediaStatus();
return this.onJoinClicked.emit();
}
this.scrollToBottom();

View File

@ -12,6 +12,7 @@ import { VideoType } from '../../models/video-type.model';
src="assets/images/poster.png"
/>
<video
class="OT_video-element"
#videoElement
[attr.id]="streamManager && _streamManager.stream ? 'video-' + _streamManager.stream.streamId : 'video-undefined'"
[muted]="mutedSound"