mirror of https://github.com/OpenVidu/openvidu.git
openvidu-components: Fixed styles in Firefox
parent
88416b3981
commit
9d94ffa417
|
@ -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 {
|
||||
|
|
|
@ -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();
|
||||
});
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
background-color: var(--ov-light-dark-color);
|
||||
}
|
||||
|
||||
#layout-container {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
h4 {
|
||||
margin-bottom: 1px;
|
||||
font-weight: bold;
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue