[ACS-7560] Corrected background color for info snackbar (#3824)

This commit is contained in:
AleksanderSklorz
2024-04-30 11:33:46 +02:00
committed by GitHub
parent e7a4bf386f
commit da561499bf
2 changed files with 3 additions and 1 deletions

View File

@@ -235,7 +235,7 @@ mat-snack-bar-container {
}
.adf-info-snackbar {
--mdc-snackbar-container-color: var(--theme-primary-color);
--mdc-snackbar-container-color: var(--theme-info-snackbar-background);
}
.adf-error-snackbar {

View File

@@ -42,6 +42,7 @@ $search-chip-icon-color: #757575;
$disabled-chip-background-color: #f5f5f5;
$contrast-gray: mat.get-color-from-palette($foreground, 'secondary-tex');
$search-highlight-background-color: #ffd180;
$info-snackbar-background: #1f74db;
// CSS Variables
$defaults: (
@@ -67,6 +68,7 @@ $defaults: (
--theme-grey-background-color: $grey-background,
--theme-grey-hover-background-color: $grey-hover-background,
--theme-blue-button-color: $blue-save-button-background,
--theme-info-snackbar-background: $info-snackbar-background,
--theme-heading-color: $black-heading,
--theme-dropdown-color: $theme-dropdown-background,
--theme-dropdown-background-hover: $theme-dropdown-background-hover,