[ACS-9225] serious a11y testing side bar elements must meet minimum color contrast ratio thresholds (#10687)

* [ACS-9225] Fixed color contrast for sidebar elements

* [ACS-9225] Applied fix also for processes
This commit is contained in:
AleksanderSklorz 2025-03-03 11:08:38 +01:00 committed by GitHub
parent 1f4cc9757c
commit 8dceb5fb1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 14 additions and 0 deletions

View File

@ -91,6 +91,7 @@
--adf-secondary-modal-text-color: $adf-secondary-modal-text-color,
--adf-disabled-button-background: $adf-disabled-button-background,
--adf-chip-border-color: $adf-chip-border-color,
--adf-sidenav-active-text-color: $adf-sidenav-active-text-color,
--adf-display-external-property-widget-preview-selection-color: mat.get-color-from-palette($foreground, secondary-text)
);

View File

@ -30,3 +30,4 @@ $adf-secondary-button-background: #2121210d;
$adf-secondary-modal-text-color: #212121;
$adf-disabled-button-background: rgba(0, 0, 0, 0.12);
$adf-chip-border-color: #757575;
$adf-sidenav-active-text-color: rgba(0, 48, 100, 1);

View File

@ -23,6 +23,12 @@ adf-process-instance-filters {
color: var(--theme-action-button-text-color);
}
}
&.adf-active {
.adf-filter-action-button__label {
color: var(--adf-sidenav-active-text-color);
}
}
}
}
}

View File

@ -23,6 +23,12 @@ adf-task-filters {
color: var(--theme-action-button-text-color);
}
}
&.adf-active {
.adf-filter-action-button__label {
color: var(--adf-sidenav-active-text-color);
}
}
}
}
}