color fixes
This commit is contained in:
parent
064604298a
commit
920d2460b4
|
@ -274,7 +274,7 @@
|
||||||
height: 27px;
|
height: 27px;
|
||||||
line-height: 27px;
|
line-height: 27px;
|
||||||
background-color: var(--secondary-color);
|
background-color: var(--secondary-color);
|
||||||
color: #5d5d5d;
|
color: var(--secondary-text);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
background-color: var(--secondary-color);
|
background-color: var(--secondary-color);
|
||||||
color: var(--dark-gray);
|
color: var(--secondary-text);
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
background-color: var(--secondary-color);
|
background-color: var(--secondary-color);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
color: #1b1b1b;
|
color: var(--secondary-text);
|
||||||
}
|
}
|
||||||
|
|
||||||
.description-finalized-btn {
|
.description-finalized-btn {
|
||||||
|
|
|
@ -104,7 +104,7 @@
|
||||||
height: 27px;
|
height: 27px;
|
||||||
line-height: 27px;
|
line-height: 27px;
|
||||||
background-color: var(--secondary-color);
|
background-color: var(--secondary-color);
|
||||||
color: #5d5d5d;
|
color: var(--secondary-text);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
|
@ -292,9 +292,9 @@
|
||||||
<mat-label>{{'NOTIFICATION-SERVICE.NOTIFICATION-TEMPLATE-EDITOR.FIELDS.EXTRA-DATA-KEYS' | translate}}</mat-label>
|
<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-grid #extraDataKeysGrid [formControl]="formGroup.get('value').get('extraDataKeys')">
|
||||||
<mat-chip-row *ngFor="let field of extraDataKeys"
|
<mat-chip-row *ngFor="let field of extraDataKeys"
|
||||||
(removed)="removeChipListValues('extraDataKeys', field)"
|
(removed)="removeChipListValues('extraDataKeys', field)"
|
||||||
[editable]="true"
|
[editable]="true"
|
||||||
(edited)="editChipListValues('extraDataKeys', $event, field)">
|
(edited)="editChipListValues('extraDataKeys', $event, field)">
|
||||||
{{field}}
|
{{field}}
|
||||||
<button matChipRemove [attr.aria-label]="'COMMONS.ACTIONS.REMOVE' | translate">
|
<button matChipRemove [attr.aria-label]="'COMMONS.ACTIONS.REMOVE' | translate">
|
||||||
<mat-icon>cancel</mat-icon>
|
<mat-icon>cancel</mat-icon>
|
||||||
|
|
|
@ -614,7 +614,7 @@ button, .mdc-button, .mat-mdc-button, .mdc-button:has(.material-icons,mat-icon,[
|
||||||
color: var(--primary-text);
|
color: var(--primary-text);
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: var(--secondary-color);
|
background-color: var(--secondary-color);
|
||||||
color: #000000;
|
color: var(--secondary-text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue