openvidu-components: Fixed styles in Firefox

pull/707/head
csantosm 2022-03-11 11:41:31 +01:00
parent 88416b3981
commit 9d94ffa417
5 changed files with 9 additions and 7 deletions

View File

@ -2,8 +2,8 @@
margin: 20px;
background-color: var(--ov-light-color);
border-radius: var(--ov-panel-radius);
height: -webkit-fill-available;
height: -moz-available;
max-height: calc(100% - 40px);
min-height: calc(100% - 40px);
}
.header-container {

View File

@ -45,8 +45,6 @@ export class ParticipantPanelItemComponent implements OnInit, OnDestroy {
private subscribeToParticipantPanelItemDirectives() {
this.muteButtonSub = this.libService.participantItemMuteButton.subscribe((value: boolean) => {
console.warn("show mute", value);
this.showMuteButton = value;
this.cd.markForCheck();
});

View File

@ -2,8 +2,8 @@
margin: 20px;
background-color: var(--ov-light-color);
border-radius: var(--ov-panel-radius);
height: -webkit-fill-available;
height: -moz-available;
max-height: calc(100% - 40px);
min-height: calc(100% - 40px);
}
.header-container {

View File

@ -4,6 +4,10 @@
background-color: var(--ov-light-dark-color);
}
#layout-container {
display: block !important;
}
h4 {
margin-bottom: 1px;
font-weight: bold;

View File

@ -1,5 +1,5 @@
<div class="container" fxLayout.gt-sm="row" fxLayout.lt-md="column">
<div fxFlex.gt-sm="65%" fxFlex.lt-md="55%" fxLayoutAlign="center center">
<div fxFlex.gt-sm="65%" fxFlex.lt-md="55%" fxLayoutAlign="center center" id="layout-container">
<ov-layout>
<ng-template #stream let-stream>
<ov-stream [stream]="stream" [displayParticipantName]="false" [settingsButton]="false"></ov-stream>