From edab403afa6e0914cd88f375c4c36985922580c5 Mon Sep 17 00:00:00 2001 From: tomson Date: Mon, 8 Apr 2024 12:14:03 +0200 Subject: [PATCH] [ACS-7448] Fix wrong notifications colors (#3761) --- projects/aca-content/src/lib/ui/overrides/ay11.scss | 9 --------- projects/aca-content/src/lib/ui/theme.scss | 6 ++++++ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/projects/aca-content/src/lib/ui/overrides/ay11.scss b/projects/aca-content/src/lib/ui/overrides/ay11.scss index 510a84562..78af3d9cc 100644 --- a/projects/aca-content/src/lib/ui/overrides/ay11.scss +++ b/projects/aca-content/src/lib/ui/overrides/ay11.scss @@ -186,15 +186,6 @@ } } - .adf-info-snackbar { - background-color: var(--theme-blue-button-color); - - .mat-mdc-simple-snack-bar, - .mat-mdc-snack-bar-action { - color: white; - } - } - .mat-mdc-button-base { &.adf-filter-button { margin-left: -2px; diff --git a/projects/aca-content/src/lib/ui/theme.scss b/projects/aca-content/src/lib/ui/theme.scss index 077164d98..721a46caf 100644 --- a/projects/aca-content/src/lib/ui/theme.scss +++ b/projects/aca-content/src/lib/ui/theme.scss @@ -141,3 +141,9 @@ mat-toolbar.mat-toolbar.mat-toolbar-single-row { .adf-empty-content__icon { color: var(--theme-secondary-text); } + +adf-snackbar-content { + .mat-mdc-button.mat-unthemed { + --mdc-text-button-label-text-color: #fff; + } +}