diff --git a/src/app/components/shared/dialog/dialog-action-buttons/dialog-action-buttons.component.html b/src/app/components/shared/dialog/dialog-action-buttons/dialog-action-buttons.component.html index 8dab567c3e7da153906678740f074605b9cb93a4..fc72dc98d2fbbe8dda14c6316402bfed4dd100e7 100644 --- a/src/app/components/shared/dialog/dialog-action-buttons/dialog-action-buttons.component.html +++ b/src/app/components/shared/dialog/dialog-action-buttons/dialog-action-buttons.component.html @@ -2,9 +2,10 @@ 'dialog-action-buttons': true, 'no-spacing': (spacing === false) }"> - <mat-divider *ngIf="showDivider"></mat-divider> <div fxLayoutAlign="end"> - <div fxLayout="row-reverse" fxLayoutGap="10px" class="buttons"> + <div fxLayout="row-reverse" + fxLayoutGap="10px" + class="buttons"> <button [disabled]="confirmButtonDisabled" *ngIf="confirmButtonClickAction !== undefined" @@ -13,7 +14,10 @@ class="mat-flat-button {{ confirmButtonType }}-confirm-button" attr.aria-labelledby="{{ ariaPrefix + 'confirm' | translate }}" (click)="performConfirmButtonClickAction()" - ><mat-icon *ngIf="buttonIcon" style="margin-right: 5px;">{{buttonIcon}}</mat-icon>{{ buttonsLabelSection + '.' + confirmButtonLabel | translate}} + > + <mat-icon *ngIf="buttonIcon" + style="margin-right: 5px;">{{buttonIcon}}</mat-icon> + {{ buttonsLabelSection + '.' + confirmButtonLabel | translate}} <mat-icon *ngIf="showLoadingCycle"> <mat-spinner diameter="20"></mat-spinner> </mat-icon> diff --git a/src/app/components/shared/header/header.component.scss b/src/app/components/shared/header/header.component.scss index 1b5157c730083ce55cf22275ec746058e15e7ed3..b328bb46a2e73fe5a8164af53b7f73ebec987d4d 100644 --- a/src/app/components/shared/header/header.component.scss +++ b/src/app/components/shared/header/header.component.scss @@ -170,12 +170,12 @@ h1 { background-color: var(--on-dialog) !important; } -.userActivityIcon{ - width:25px; - height:25px; - margin-left:25px; - margin-bottom:5px; - background-color:var(--on-background); +.userActivityIcon { + width: 25px; + height: 25px; + margin-left: 25px; + margin-bottom: 5px; + background-color: var(--primary); -webkit-mask-image: url("../../../../assets/icons/activity.svg"); mask-image: url("../../../../assets/icons/activity.svg"); mask-repeat: no-repeat; @@ -183,7 +183,8 @@ h1 { mask-size: 100% 100%; } -.userActivityTxt{ - color:var(--on-background); - margin-left:15px; +.userActivityTxt { + color: var(--primary); + margin-left: 5px; + font-size: 14px; } diff --git a/src/app/components/shared/overlay/active-user/active-user.component.scss b/src/app/components/shared/overlay/active-user/active-user.component.scss index 670fae60980b82fbd27519af0b627cbbb6f3f113..e1924c64510798d8a065d9b0ca9a9d4b3142fd9d 100644 --- a/src/app/components/shared/overlay/active-user/active-user.component.scss +++ b/src/app/components/shared/overlay/active-user/active-user.component.scss @@ -19,7 +19,7 @@ box-shadow: none !important; right: -75px; background-color: transparent !important; - color: var(--green) !important; + color: var(--primary) !important; animation:popin-shadow 0.4s cubic-bezier(0.680, -0.550, 0.265, 1.550) both; } } @@ -27,7 +27,7 @@ width: 100%; height: 100%; position: absolute; - background-color:var(--green) !important; + background-color:var(--primary) !important; -webkit-mask-image: url("../../../../../assets/icons/activity.svg"); mask-image: url("../../../../../assets/icons/activity.svg"); mask-repeat: no-repeat; diff --git a/src/app/utils/cloud-parameters.ts b/src/app/utils/cloud-parameters.ts index f9dcd2e9aeb26a0b2a0fdb97acc21bdac1a35a89..54c2450001eb183f1b0cf934feb3ca05dcba053a 100644 --- a/src/app/utils/cloud-parameters.ts +++ b/src/app/utils/cloud-parameters.ts @@ -123,7 +123,7 @@ export class CloudParameters { this.question = ''; this.textTransform = CloudTextStyle.capitalized; this.cloudWeightSettings = [ - { maxVisibleElements: elements, color: '#c1c1c1', rotation: 0, allowManualTagNumber: true }, + { maxVisibleElements: elements, color: '#C0C0C0', rotation: 0, allowManualTagNumber: true }, { maxVisibleElements: elements, color: '#d98e49', rotation: 0, allowManualTagNumber: true }, { maxVisibleElements: elements, color: '#ccca3c', rotation: 0, allowManualTagNumber: true }, { maxVisibleElements: elements, color: '#83e761', rotation: 0, allowManualTagNumber: true },