color fixes

This commit is contained in:
mchouliara 2024-10-02 17:40:17 +03:00
parent 064604298a
commit 920d2460b4
6 changed files with 8 additions and 8 deletions

View File

@ -274,7 +274,7 @@
height: 27px;
line-height: 27px;
background-color: var(--secondary-color);
color: #5d5d5d;
color: var(--secondary-text);
border-radius: 4px;
font-weight: 400;
font-size: 14px;

View File

@ -4,7 +4,7 @@
width: 100%;
height: 60px;
background-color: var(--secondary-color);
color: var(--dark-gray);
color: var(--secondary-text);
font-size: 1.25rem;
}

View File

@ -48,7 +48,7 @@
background-color: var(--secondary-color);
border-radius: 4px;
justify-content: space-between;
color: #1b1b1b;
color: var(--secondary-text);
}
.description-finalized-btn {

View File

@ -104,7 +104,7 @@
height: 27px;
line-height: 27px;
background-color: var(--secondary-color);
color: #5d5d5d;
color: var(--secondary-text);
border-radius: 4px;
font-weight: 400;
font-size: 14px;

View File

@ -292,9 +292,9 @@
<mat-label>{{'NOTIFICATION-SERVICE.NOTIFICATION-TEMPLATE-EDITOR.FIELDS.EXTRA-DATA-KEYS' | translate}}</mat-label>
<mat-chip-grid #extraDataKeysGrid [formControl]="formGroup.get('value').get('extraDataKeys')">
<mat-chip-row *ngFor="let field of extraDataKeys"
(removed)="removeChipListValues('extraDataKeys', field)"
[editable]="true"
(edited)="editChipListValues('extraDataKeys', $event, field)">
(removed)="removeChipListValues('extraDataKeys', field)"
[editable]="true"
(edited)="editChipListValues('extraDataKeys', $event, field)">
{{field}}
<button matChipRemove [attr.aria-label]="'COMMONS.ACTIONS.REMOVE' | translate">
<mat-icon>cancel</mat-icon>

View File

@ -614,7 +614,7 @@ button, .mdc-button, .mat-mdc-button, .mdc-button:has(.material-icons,mat-icon,[
color: var(--primary-text);
&:hover {
background-color: var(--secondary-color);
color: #000000;
color: var(--secondary-text);
}
}