mirror of https://github.com/OpenVidu/openvidu.git
ov-components: Fixed recording activity panel styles
parent
0a3129e818
commit
47ccaf58c7
|
@ -67,9 +67,9 @@
|
|||
<span *ngIf="recordingStatus === recStatusEnum.STOPPED">{{ 'TOOLBAR.START_RECORDING' | translate }}</span>
|
||||
</button>
|
||||
|
||||
<span *ngIf="recordingStatus === recStatusEnum.STARTING">{{ 'PANEL.RECORDING.STARTING' | translate }} </span>
|
||||
<span *ngIf="recordingStatus === recStatusEnum.STOPPING">{{ 'PANEL.RECORDING.STOPPING' | translate }} </span>
|
||||
<span *ngIf="recordingStatus === recStatusEnum.FAILED">Message: </span>
|
||||
<span *ngIf="recordingStatus === recStatusEnum.STARTING" class="recording-message">{{ 'PANEL.RECORDING.STARTING' | translate }} </span>
|
||||
<span *ngIf="recordingStatus === recStatusEnum.STOPPING" class="recording-message">{{ 'PANEL.RECORDING.STOPPING' | translate }} </span>
|
||||
<span *ngIf="recordingStatus === recStatusEnum.FAILED" class="recording-error">Message: </span>
|
||||
<span *ngIf="recordingStatus === recStatusEnum.FAILED" class="recording-error">{{ recordingError }} </span>
|
||||
<div>
|
||||
<button
|
||||
|
|
|
@ -72,6 +72,10 @@
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.recording-message {
|
||||
color: var(--ov-text-surface-color);
|
||||
}
|
||||
|
||||
.recording-error {
|
||||
color: var(--ov-error-color);
|
||||
font-weight: 600;
|
||||
|
|
Loading…
Reference in New Issue