mirror of https://github.com/OpenVidu/openvidu.git
ov-components: Updated css styles for improving custom color support
parent
ada5984a32
commit
02e3fb0d4e
|
@ -17,18 +17,21 @@ import { MatDialogRef } from '@angular/material/dialog';
|
||||||
`,
|
`,
|
||||||
styles: [
|
styles: [
|
||||||
`
|
`
|
||||||
|
::ng-deep .mat-mdc-dialog-content {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
::ng-deep .mat-mdc-dialog-surface {
|
::ng-deep .mat-mdc-dialog-surface {
|
||||||
background-color: var(--ov-surface-color);
|
background-color: var(--ov-surface-color);
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
}
|
}
|
||||||
#delete-recording-confirm-btn {
|
#delete-recording-confirm-btn {
|
||||||
background-color: var(--ov-error-color);
|
background-color: var(--ov-error-color) !important;
|
||||||
color: var(--ov-text-primary-color);
|
color: var(--ov-secondary-action-color);
|
||||||
}
|
}
|
||||||
.mat-mdc-button,
|
.mat-mdc-button,
|
||||||
.mat-mdc-button:not(:disabled),
|
.mat-mdc-button:not(:disabled),
|
||||||
::ng-deep .mat-mdc-button .mat-mdc-button-persistent-ripple::before {
|
::ng-deep .mat-mdc-button .mat-mdc-button-persistent-ripple::before {
|
||||||
color: var(--ov-text-primary-color);
|
color: var(--ov-secondary-action-color);
|
||||||
background-color: var(--ov-primary-action-color) !important;
|
background-color: var(--ov-primary-action-color) !important;
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,10 @@ import { DialogData } from '../../models/dialog.model';
|
||||||
`,
|
`,
|
||||||
styles: [
|
styles: [
|
||||||
`
|
`
|
||||||
|
::ng-deep .mat-mdc-dialog-content {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
::ng-deep .mat-mdc-dialog-surface {
|
::ng-deep .mat-mdc-dialog-surface {
|
||||||
background-color: var(--ov-surface-color);
|
background-color: var(--ov-surface-color);
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
|
@ -24,7 +28,7 @@ import { DialogData } from '../../models/dialog.model';
|
||||||
.mat-mdc-button,
|
.mat-mdc-button,
|
||||||
.mat-mdc-button:not(:disabled),
|
.mat-mdc-button:not(:disabled),
|
||||||
::ng-deep .mat-mdc-button .mat-mdc-button-persistent-ripple::before {
|
::ng-deep .mat-mdc-button .mat-mdc-button-persistent-ripple::before {
|
||||||
color: var(--ov-text-primary-color);
|
color: var(--ov-secondary-action-color);
|
||||||
background-color: var(--ov-primary-action-color) !important;
|
background-color: var(--ov-primary-action-color) !important;
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,10 @@ import { RecordingDialogData } from '../../models/dialog.model';
|
||||||
`,
|
`,
|
||||||
styles: [
|
styles: [
|
||||||
`
|
`
|
||||||
|
::ng-deep .mat-mdc-dialog-content {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
::ng-deep .mat-mdc-dialog-surface {
|
::ng-deep .mat-mdc-dialog-surface {
|
||||||
background-color: var(--ov-surface-color);
|
background-color: var(--ov-surface-color);
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
|
@ -29,7 +33,7 @@ import { RecordingDialogData } from '../../models/dialog.model';
|
||||||
.mat-mdc-button,
|
.mat-mdc-button,
|
||||||
.mat-mdc-button:not(:disabled),
|
.mat-mdc-button:not(:disabled),
|
||||||
::ng-deep .mat-mdc-button .mat-mdc-button-persistent-ripple::before {
|
::ng-deep .mat-mdc-button .mat-mdc-button-persistent-ripple::before {
|
||||||
color: var(--ov-text-primary-color);
|
color: var(--ov-secondary-action-color);
|
||||||
background-color: var(--ov-primary-action-color) !important;
|
background-color: var(--ov-primary-action-color) !important;
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
$ov-activity-status-color: #afafaf;
|
||||||
|
|
||||||
:host {
|
:host {
|
||||||
.activities-body-container {
|
.activities-body-container {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
|
@ -6,9 +8,18 @@
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.activity-status {
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
|
display: inline;
|
||||||
|
padding: 3px;
|
||||||
|
font-size: 11px;
|
||||||
|
border-radius: var(--ov-surface-radius);
|
||||||
|
background-color: $ov-activity-status-color;
|
||||||
|
}
|
||||||
|
|
||||||
.activity-icon {
|
.activity-icon {
|
||||||
display: inherit;
|
display: inherit;
|
||||||
background-color: var(--ov-secondary-action-color);
|
background-color: $ov-activity-status-color;;
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
margin: 10px 0px !important;
|
margin: 10px 0px !important;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
<div class="activity-action-buttons" matListItemMeta>
|
<div class="activity-action-buttons" matListItemMeta>
|
||||||
<div
|
<div
|
||||||
id="broadcasting-status"
|
id="broadcasting-status"
|
||||||
|
class="activity-status"
|
||||||
[ngClass]="{
|
[ngClass]="{
|
||||||
started: broadcastingStatus === broadcastingStatusEnum.STARTED,
|
started: broadcastingStatus === broadcastingStatusEnum.STARTED,
|
||||||
stopped: broadcastingStatus === broadcastingStatusEnum.STOPPED,
|
stopped: broadcastingStatus === broadcastingStatusEnum.STOPPED,
|
||||||
|
|
|
@ -1,13 +1,5 @@
|
||||||
$ov-broadcasting-color: #5903ca;
|
$ov-broadcasting-color: #5903ca;
|
||||||
|
|
||||||
#broadcasting-status {
|
|
||||||
color: var(--ov-text-surface-color);
|
|
||||||
display: inline;
|
|
||||||
padding: 3px;
|
|
||||||
font-size: 11px;
|
|
||||||
border-radius: var(--ov-surface-radius);
|
|
||||||
}
|
|
||||||
|
|
||||||
.time-container {
|
.time-container {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
@ -19,7 +11,7 @@ $ov-broadcasting-color: #5903ca;
|
||||||
}
|
}
|
||||||
|
|
||||||
#broadcasting-icon {
|
#broadcasting-icon {
|
||||||
color: var(--ov-primary-action-color) !important;
|
color: $ov-broadcasting-color !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.broadcasting-duration {
|
.broadcasting-duration {
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
<div class="activity-action-buttons" matListItemMeta>
|
<div class="activity-action-buttons" matListItemMeta>
|
||||||
<div
|
<div
|
||||||
id="recording-status"
|
id="recording-status"
|
||||||
|
class="activity-status"
|
||||||
[ngClass]="{
|
[ngClass]="{
|
||||||
started: recordingStatus === recStatusEnum.STARTED,
|
started: recordingStatus === recStatusEnum.STARTED,
|
||||||
stopped: recordingStatus === recStatusEnum.STOPPED,
|
stopped: recordingStatus === recStatusEnum.STOPPED,
|
||||||
|
@ -48,8 +49,8 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2 *ngIf="recordingList.length === 0">{{ 'PANEL.RECORDING.CONTENT_TITLE' | translate }}</h2>
|
<h2 *ngIf="recordingList.length === 0" class="recording-title">{{ 'PANEL.RECORDING.CONTENT_TITLE' | translate }}</h2>
|
||||||
<span *ngIf="recordingList.length === 0">{{ 'PANEL.RECORDING.CONTENT_SUBTITLE' | translate }}</span>
|
<span *ngIf="recordingList.length === 0" class="recording-subtitle">{{ 'PANEL.RECORDING.CONTENT_SUBTITLE' | translate }}</span>
|
||||||
|
|
||||||
<!-- Recording button -->
|
<!-- Recording button -->
|
||||||
<div class="item recording-action-buttons">
|
<div class="item recording-action-buttons">
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
:host {
|
:host {
|
||||||
#recording-status {
|
$ov-activity-status-color: #afafaf;
|
||||||
color: var(--ov-text-primary-color);
|
.recording-title,
|
||||||
display: inline;
|
.recording-subtitle {
|
||||||
padding: 3px;
|
color: var(--ov-text-surface-color);
|
||||||
font-size: 11px;
|
|
||||||
border-radius: var(--ov-surface-radius);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.recording-title {
|
.recording-title {
|
||||||
|
@ -27,10 +25,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.recording-duration {
|
.recording-duration {
|
||||||
background-color: var(--ov-secondary-action-color);
|
background-color: $ov-activity-status-color;
|
||||||
padding: 4px 8px;
|
padding: 4px 8px;
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.recording-duration mat-icon {
|
.recording-duration mat-icon {
|
||||||
|
@ -41,22 +40,22 @@
|
||||||
|
|
||||||
.started {
|
.started {
|
||||||
background-color: #3b7430 !important;
|
background-color: #3b7430 !important;
|
||||||
color: var(--ov-text-primary-color);
|
color: #ffffff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.activity-icon.started,
|
.activity-icon.started,
|
||||||
.failed {
|
.failed {
|
||||||
background-color: var(--ov-error-color) !important;
|
background-color: var(--ov-error-color) !important;
|
||||||
color: var(--ov-text-primary-color);
|
// color: var(--ov-secondary-action-color);
|
||||||
}
|
}
|
||||||
.stopped {
|
.stopped {
|
||||||
background-color: var(--ov-secondary-action-color);
|
// background-color: var(--ov-secondary-action-color);
|
||||||
color: var(--ov-text-surface-color) !important;
|
color: var(--ov-text-surface-color) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.starting {
|
.starting {
|
||||||
background-color: var(--ov-warn-color) !important;
|
background-color: var(--ov-warn-color) !important;
|
||||||
color: var(--ov-text-surface-color) !important;
|
color: #000000 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-body-container {
|
.panel-body-container {
|
||||||
|
@ -100,17 +99,13 @@
|
||||||
#start-recording-btn {
|
#start-recording-btn {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: var(--ov-primary-action-color);
|
background-color: var(--ov-primary-action-color);
|
||||||
color: var(--ov-text-primary-color);
|
color: var(--ov-secondary-action-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
#stop-recording-btn {
|
#stop-recording-btn {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: var(--ov-error-color);
|
background-color: var(--ov-error-color);
|
||||||
color: var(--ov-text-primary-color);
|
color: var(--ov-secondary-action-color);
|
||||||
}
|
|
||||||
|
|
||||||
.delete-recording-btn {
|
|
||||||
color: var(--ov-error-color);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#reset-recording-status-btn {
|
#reset-recording-status-btn {
|
||||||
|
@ -133,6 +128,7 @@
|
||||||
width: 40px !important;
|
width: 40px !important;
|
||||||
height: 40px !important;
|
height: 40px !important;
|
||||||
padding: 5px !important;
|
padding: 5px !important;
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
}
|
}
|
||||||
#play-recording-btn > .mat-icon,
|
#play-recording-btn > .mat-icon,
|
||||||
#download-recording-btn > .mat-icon,
|
#download-recording-btn > .mat-icon,
|
||||||
|
@ -140,6 +136,13 @@
|
||||||
height: 20px !important;
|
height: 20px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#delete-recording-btn {
|
||||||
|
color: var(--ov-error-color);
|
||||||
|
}
|
||||||
|
#download-recording-btn {
|
||||||
|
color: var(--ov-accent-action-color);
|
||||||
|
}
|
||||||
|
|
||||||
mat-expansion-panel {
|
mat-expansion-panel {
|
||||||
margin: 0px 0px 5px 0px;
|
margin: 0px 0px 5px 0px;
|
||||||
}
|
}
|
||||||
|
@ -156,6 +159,18 @@
|
||||||
height: 0px !important;
|
height: 0px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .mdc-list-item__secondary-text,
|
||||||
|
::ng-deep .mdc-list-item__primary-text {
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ::ng-deep .mat-mdc-list-item:hover {
|
||||||
|
// color: #000000 !important;
|
||||||
|
// }
|
||||||
|
::ng-deep .mat-mdc-list-item:hover .mat-mdc-list-item-title {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
.blink {
|
.blink {
|
||||||
animation: blinker 1.5s linear infinite !important;
|
animation: blinker 1.5s linear infinite !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
<div class="effects-container" fxFlex="100%" fxLayoutAlign="space-evenly none">
|
<div class="effects-container" fxFlex="100%" fxLayoutAlign="space-evenly none">
|
||||||
<div>
|
<div>
|
||||||
<h4>{{ 'PANEL.BACKGROUND.BLURRED_SECTION' | translate }}</h4>
|
<h4 class="background-title">{{ 'PANEL.BACKGROUND.BLURRED_SECTION' | translate }}</h4>
|
||||||
<div>
|
<div>
|
||||||
<button
|
<button
|
||||||
*ngFor="let effect of noEffectAndBlurredBackground"
|
*ngFor="let effect of noEffectAndBlurredBackground"
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<div>
|
<div>
|
||||||
<h4>{{ 'PANEL.BACKGROUND.IMAGES_SECTION' | translate }}</h4>
|
<h4 class="background-title">{{ 'PANEL.BACKGROUND.IMAGES_SECTION' | translate }}</h4>
|
||||||
|
|
||||||
<div class="grid">
|
<div class="grid">
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
.background-title {
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
|
}
|
||||||
.effects-container {
|
.effects-container {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
|
|
@ -9,6 +9,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
|
|
||||||
.text-info {
|
.text-info {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.vertical-align {
|
.vertical-align {
|
||||||
|
@ -36,6 +37,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
order: 3;
|
order: 3;
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
align-items: none;
|
align-items: none;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-container textarea {
|
.input-container textarea {
|
||||||
|
@ -56,6 +58,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
-moz-box-shadow: none;
|
-moz-box-shadow: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
font-family: 'Roboto', 'RobotoDraft', Helvetica, Arial, sans-serif;
|
font-family: 'Roboto', 'RobotoDraft', Helvetica, Arial, sans-serif;
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.message {
|
.message {
|
||||||
|
@ -76,7 +79,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
.participant-name-container p {
|
.participant-name-container p {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
color: var(--ov-primary-action-color);
|
color: var(--ov-text-surface-color);
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,11 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.panel-title,
|
||||||
|
.panel-close-button {
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
|
}
|
||||||
|
|
||||||
.panel-title {
|
.panel-title {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
|
|
|
@ -4,13 +4,14 @@
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
margin: auto !important;
|
margin: auto !important;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
color: var(--ov-text-surface-color);
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.participant-subtitle {
|
.participant-subtitle {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-size: 11px !important;
|
font-size: 11px !important;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
}
|
}
|
||||||
.participant-name {
|
.participant-name {
|
||||||
font-weight: bold !important;
|
font-weight: bold !important;
|
||||||
|
@ -34,6 +35,13 @@
|
||||||
padding-bottom: 10px !important;
|
padding-bottom: 10px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .mat-mdc-list-item:hover {
|
||||||
|
color: #000000 !important;
|
||||||
|
}
|
||||||
|
::ng-deep .mat-mdc-list-item:hover .mat-mdc-list-item-title {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
mat-list {
|
mat-list {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
@ -50,6 +58,7 @@
|
||||||
|
|
||||||
#mute-btn {
|
#mute-btn {
|
||||||
border-radius: var(--ov-buttons-radius);
|
border-radius: var(--ov-buttons-radius);
|
||||||
|
color: var(--ov-text-surface-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.warn-btn {
|
.warn-btn {
|
||||||
|
|
|
@ -57,10 +57,10 @@
|
||||||
|
|
||||||
<div class="item-content">
|
<div class="item-content">
|
||||||
<div *ngIf="selectedOption === settingsOptions.GENERAL">
|
<div *ngIf="selectedOption === settingsOptions.GENERAL">
|
||||||
<mat-label>{{ 'PREJOIN.NICKNAME' | translate }}</mat-label>
|
<mat-label class="input-label">{{ 'PREJOIN.NICKNAME' | translate }}</mat-label>
|
||||||
<ov-participant-name-input></ov-participant-name-input>
|
<ov-participant-name-input></ov-participant-name-input>
|
||||||
<mat-list>
|
<mat-list>
|
||||||
<mat-list-item>
|
<mat-list-item class="lang-selector">
|
||||||
<mat-icon matListItemIcon>translate</mat-icon>
|
<mat-icon matListItemIcon>translate</mat-icon>
|
||||||
<div matListItemTitle>{{ 'PANEL.SETTINGS.LANGUAGE' | translate }}</div>
|
<div matListItemTitle>{{ 'PANEL.SETTINGS.LANGUAGE' | translate }}</div>
|
||||||
<ov-lang-selector matListItemMeta (onLangChanged)="onLangChanged.emit($event)"></ov-lang-selector>
|
<ov-lang-selector matListItemMeta (onLangChanged)="onLangChanged.emit($event)"></ov-lang-selector>
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
mat-list-option[aria-selected='false'] {
|
mat-list-option[aria-selected='false'] {
|
||||||
|
::ng-deep .mdc-list-item__primary-text,
|
||||||
mat-icon {
|
mat-icon {
|
||||||
color: var(--ov-text-surface-color) !important;
|
color: var(--ov-text-surface-color) !important;
|
||||||
}
|
}
|
||||||
|
@ -50,4 +51,13 @@
|
||||||
.mat-mdc-list-base {
|
.mat-mdc-list-base {
|
||||||
--mdc-list-list-item-focus-state-layer-color: transparent !important;
|
--mdc-list-list-item-focus-state-layer-color: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .lang-selector .expand-more-icon {
|
||||||
|
color: var(--ov-secondary-action-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .lang-selector div,
|
||||||
|
.input-label {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,10 @@
|
||||||
font-size: 14px !important;
|
font-size: 14px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .lang-btn mat-icon {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
.video-container {
|
.video-container {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
min-height: 45vh;
|
min-height: 45vh;
|
||||||
|
@ -80,7 +84,7 @@
|
||||||
|
|
||||||
#join-button {
|
#join-button {
|
||||||
background-color: var(--ov-primary-action-color);
|
background-color: var(--ov-primary-action-color);
|
||||||
color: var(--ov-text-primary-color);
|
color: var(--ov-secondary-action-color);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
$ov-selection-color: #d4d6d7;
|
$ov-selection-color-btn: #afafaf;
|
||||||
|
$ov-selection-color: #cccccc;
|
||||||
|
|
||||||
:host {
|
:host {
|
||||||
.device-container-element {
|
.device-container-element {
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
border: 1px solid $ov-selection-color;
|
border: 1px solid $ov-selection-color-btn;
|
||||||
}
|
}
|
||||||
.device-container-element.mute-btn {
|
.device-container-element.mute-btn {
|
||||||
border: 1px solid var(--ov-error-color);
|
border: 1px solid var(--ov-error-color);
|
||||||
|
@ -34,7 +35,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
::ng-deep .mat-mdc-text-field-wrapper {
|
::ng-deep .mat-mdc-text-field-wrapper {
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
background-color: var(--ov-surface-color) !important;
|
background-color: $ov-selection-color !important;
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
}
|
}
|
||||||
::ng-deep .mdc-button--unelevated {
|
::ng-deep .mdc-button--unelevated {
|
||||||
|
@ -42,7 +43,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
border-bottom-left-radius: var(--ov-surface-radius);
|
border-bottom-left-radius: var(--ov-surface-radius);
|
||||||
border-bottom-right-radius: 0px !important;
|
border-bottom-right-radius: 0px !important;
|
||||||
border-top-right-radius: 0px !important;
|
border-top-right-radius: 0px !important;
|
||||||
background-color: $ov-selection-color !important;
|
background-color: $ov-selection-color-btn !important;
|
||||||
width: 48px !important;
|
width: 48px !important;
|
||||||
min-width: 48px !important;
|
min-width: 48px !important;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -84,7 +85,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
::ng-deep .mat-mdc-select-panel {
|
::ng-deep .mat-mdc-select-panel {
|
||||||
background-color: var(--ov-surface-color) !important;
|
background-color: #ffffff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .mat-mdc-option {
|
::ng-deep .mat-mdc-option {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<button *ngIf="!compact" mat-flat-button [matMenuTriggerFor]="menu" class="lang-button" id="lang-btn">
|
<button *ngIf="!compact" mat-flat-button [matMenuTriggerFor]="menu" class="lang-button" id="lang-btn">
|
||||||
<span id="lang-selected-name">{{ langSelected?.name }}</span>
|
<span id="lang-selected-name">{{ langSelected?.name }}</span>
|
||||||
<mat-icon>expand_more</mat-icon>
|
<mat-icon class="expand-more-icon">expand_more</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<button id="lang-btn-compact" *ngIf="compact" mat-icon-button [matMenuTriggerFor]="menu">
|
<button id="lang-btn-compact" *ngIf="compact" mat-icon-button [matMenuTriggerFor]="menu">
|
||||||
<mat-icon>translate</mat-icon>
|
<mat-icon>translate</mat-icon>
|
||||||
|
|
|
@ -1,10 +1,21 @@
|
||||||
|
$ov-surface-color-lighter: color-mix(in srgb, var(--ov-surface-color), #fff 5%);
|
||||||
|
|
||||||
.lang-button {
|
.lang-button {
|
||||||
background-color: var(--ov-primary-action-color) !important;
|
background-color: var(--ov-primary-action-color) !important;
|
||||||
color: var(--ov-secondary-action-color);
|
color: var(--ov-secondary-action-color);
|
||||||
}
|
}
|
||||||
|
.lang-button .mat-icon {
|
||||||
|
color: var(--ov-secondary-action-color);
|
||||||
|
|
||||||
|
}
|
||||||
::ng-deep .mat-mdc-menu-panel {
|
::ng-deep .mat-mdc-menu-panel {
|
||||||
border-radius: var(--ov-surface-radius) !important;
|
border-radius: var(--ov-surface-radius) !important;
|
||||||
background-color: var(--ov-surface-color) !important;
|
background-color: $ov-surface-color-lighter !important;
|
||||||
box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2) !important;
|
box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .mat-mdc-menu-item,
|
||||||
|
.mat-mdc-menu-item:visited,
|
||||||
|
.mat-mdc-menu-item:link {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
$ov-selection-color: #d4d6d7;
|
$ov-selection-color-btn: #afafaf;
|
||||||
|
$ov-selection-color: #cccccc;
|
||||||
:host {
|
:host {
|
||||||
|
|
||||||
#name-input-container {
|
#name-input-container {
|
||||||
height: 70px;
|
height: 70px;
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
|
@ -18,8 +18,8 @@ $ov-selection-color: #d4d6d7;
|
||||||
::ng-deep .mat-mdc-text-field-wrapper {
|
::ng-deep .mat-mdc-text-field-wrapper {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
height: 70px;
|
height: 70px;
|
||||||
background-color: var(--ov-surface-color) !important;
|
background-color: $ov-selection-color !important;
|
||||||
|
border-radius: var(--ov-surface-radius);
|
||||||
}
|
}
|
||||||
::ng-deep .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before {
|
::ng-deep .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before {
|
||||||
border: 0px !important;
|
border: 0px !important;
|
||||||
|
@ -29,7 +29,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
border-bottom-left-radius: var(--ov-surface-radius) !important;
|
border-bottom-left-radius: var(--ov-surface-radius) !important;
|
||||||
border-bottom-right-radius: 0px !important;
|
border-bottom-right-radius: 0px !important;
|
||||||
border-top-right-radius: 0px !important;
|
border-top-right-radius: 0px !important;
|
||||||
background-color: $ov-selection-color !important;
|
background-color: $ov-selection-color-btn !important;
|
||||||
width: 48px !important;
|
width: 48px !important;
|
||||||
min-width: 48px !important;
|
min-width: 48px !important;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -56,8 +56,9 @@ $ov-selection-color: #d4d6d7;
|
||||||
border-bottom-right-radius: var(--ov-surface-radius) !important;
|
border-bottom-right-radius: var(--ov-surface-radius) !important;
|
||||||
border-bottom-left-radius: 0px !important;
|
border-bottom-left-radius: 0px !important;
|
||||||
border-top-left-radius: 0px !important;
|
border-top-left-radius: 0px !important;
|
||||||
border: 1px solid $ov-selection-color;
|
border: 1px solid $ov-selection-color-btn;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
|
caret-color: #000000 !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
$ov-selection-color: #d4d6d7;
|
$ov-selection-color-btn: #afafaf;
|
||||||
|
$ov-selection-color: #cccccc;
|
||||||
|
|
||||||
:host {
|
:host {
|
||||||
.device-container-element {
|
.device-container-element {
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
border: 1px solid $ov-selection-color;
|
border: 1px solid $ov-selection-color-btn;
|
||||||
}
|
}
|
||||||
.device-container-element.mute-btn {
|
.device-container-element.mute-btn {
|
||||||
border: 1px solid var(--ov-error-color);
|
border: 1px solid var(--ov-error-color);
|
||||||
|
@ -33,7 +35,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
::ng-deep .mat-mdc-text-field-wrapper {
|
::ng-deep .mat-mdc-text-field-wrapper {
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
background-color: var(--ov-surface-color) !important;
|
background-color: $ov-selection-color !important;
|
||||||
border-radius: var(--ov-surface-radius);
|
border-radius: var(--ov-surface-radius);
|
||||||
}
|
}
|
||||||
::ng-deep .mdc-button--unelevated {
|
::ng-deep .mdc-button--unelevated {
|
||||||
|
@ -41,7 +43,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
border-bottom-left-radius: var(--ov-surface-radius);
|
border-bottom-left-radius: var(--ov-surface-radius);
|
||||||
border-bottom-right-radius: 0px !important;
|
border-bottom-right-radius: 0px !important;
|
||||||
border-top-right-radius: 0px !important;
|
border-top-right-radius: 0px !important;
|
||||||
background-color: $ov-selection-color !important;
|
background-color: $ov-selection-color-btn !important;
|
||||||
width: 48px !important;
|
width: 48px !important;
|
||||||
min-width: 48px !important;
|
min-width: 48px !important;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -86,7 +88,7 @@ $ov-selection-color: #d4d6d7;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .mat-mdc-select-panel {
|
::ng-deep .mat-mdc-select-panel {
|
||||||
background-color: var(--ov-surface-color) !important;
|
background-color: #e2e2e2 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .mat-mdc-option {
|
::ng-deep .mat-mdc-option {
|
||||||
|
|
|
@ -2,7 +2,6 @@ $ov-broadcasting-blinking-color: #5903ca;
|
||||||
$ov-recording-blinking-color: #eb5144;
|
$ov-recording-blinking-color: #eb5144;
|
||||||
|
|
||||||
:host {
|
:host {
|
||||||
|
|
||||||
#toolbar {
|
#toolbar {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
@ -61,6 +60,8 @@ $ov-recording-blinking-color: #eb5144;
|
||||||
color: var(--ov-secondary-action-color);
|
color: var(--ov-secondary-action-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#media-buttons-container > button,
|
#media-buttons-container > button,
|
||||||
::ng-deep #media-buttons-container > button,
|
::ng-deep #media-buttons-container > button,
|
||||||
#media-buttons-container:not(#media-buttons-container > button) button,
|
#media-buttons-container:not(#media-buttons-container > button) button,
|
||||||
|
@ -99,6 +100,7 @@ $ov-recording-blinking-color: #eb5144;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
|
color: var(--ov-text-primary-color);
|
||||||
}
|
}
|
||||||
#session-info-container {
|
#session-info-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -233,6 +235,12 @@ $ov-recording-blinking-color: #eb5144;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .mat-mdc-menu-item {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
|
::ng-deep .mat-mdc-menu-item mat-icon {
|
||||||
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
}
|
||||||
::ng-deep #toolbar-broadcasting-btn > .mat-icon {
|
::ng-deep #toolbar-broadcasting-btn > .mat-icon {
|
||||||
color: $ov-broadcasting-blinking-color !important;
|
color: $ov-broadcasting-blinking-color !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -114,7 +114,7 @@
|
||||||
"SUBTITLE": "Graba tus llamadas para la posteridad",
|
"SUBTITLE": "Graba tus llamadas para la posteridad",
|
||||||
"CONTENT_TITLE": "Graba tu video conferencia",
|
"CONTENT_TITLE": "Graba tu video conferencia",
|
||||||
"CONTENT_SUBTITLE": "Cuando la grabación haya finalizado, podrás descargarla con facilidad",
|
"CONTENT_SUBTITLE": "Cuando la grabación haya finalizado, podrás descargarla con facilidad",
|
||||||
"STARTING": "Iniciando grabación",
|
"STARTING": "Iniciando grabación...",
|
||||||
"STOPPING": "Parando grabación",
|
"STOPPING": "Parando grabación",
|
||||||
"IN_PROGRESS": "Grabación en curso",
|
"IN_PROGRESS": "Grabación en curso",
|
||||||
"PLAY": "Reproducir",
|
"PLAY": "Reproducir",
|
||||||
|
|
|
@ -45,29 +45,3 @@ body {
|
||||||
--ov-video-radius: 5px;
|
--ov-video-radius: 5px;
|
||||||
--ov-surface-radius: 5px;
|
--ov-surface-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
--ov-primary-color: #303030; -> --ov-background-color
|
|
||||||
|
|
||||||
+ -> --ov-primary-action-color
|
|
||||||
--ov-secondary-color: #3e3f3f; -> --ov-secondary-action-color
|
|
||||||
--ov-tertiary-color: #598eff; -> REMOVED (se usará --ov-accent-color)
|
|
||||||
|
|
||||||
|
|
||||||
--ov-warn-color: #eb5144; -> --ov-warn-color
|
|
||||||
+ -> --ov-error-color
|
|
||||||
--ov-accent-color: #ffae35; -> --ov-accent-action-color
|
|
||||||
--ov-light-color: #e6e6e6; -> REMOVED
|
|
||||||
|
|
||||||
--ov-logo-background-color: #3a3d3d; -> REMOVED (se usará --ov-secondary-color)
|
|
||||||
--ov-text-color: #ffffff; -> --ov-text-primary-color
|
|
||||||
-> --ov-text-secondary-color
|
|
||||||
|
|
||||||
--ov-panel-text-color: #1d1d1d; -> --ov-text-color-surface
|
|
||||||
--ov-panel-background: #ffffff; -> --ov-surface-color
|
|
||||||
|
|
||||||
--ov-buttons-radius: 50%;
|
|
||||||
--ov-leave-button-radius: 10px;
|
|
||||||
--ov-video-radius: 5px;
|
|
||||||
--ov-panel-radius: 5px; -> --ov-surface-radius
|
|
||||||
*/
|
|
||||||
|
|
Loading…
Reference in New Issue