mirror of https://github.com/OpenVidu/openvidu.git
openvidu-components: Minor styles changes
parent
000f21b9dd
commit
b52ca52e1d
|
@ -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;
|
||||
}
|
||||
|
||||
/*!
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div id="layout" class="bounds">
|
||||
<div id="layout" class="layout">
|
||||
<div
|
||||
class="OT_root OT_publisher"
|
||||
id="localUser"
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue