From 6769777677efcfaa4032c689fd4d7136c750ddbc Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 30 Aug 2025 10:01:36 +0200 Subject: [PATCH] Feature/restore background color in dialogs and menus (#5431) * Restore background color in dialogs and menus --- apps/client/src/styles/theme.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/apps/client/src/styles/theme.scss b/apps/client/src/styles/theme.scss index 9256b41d9..62da5f9c6 100644 --- a/apps/client/src/styles/theme.scss +++ b/apps/client/src/styles/theme.scss @@ -165,6 +165,25 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); title-text-line-height: 1.2 ) ); + + @include mat.dialog-overrides( + ( + container-color: var(--light-background) + ) + ); + + @include mat.menu-overrides( + ( + container-color: var(--light-background) + ) + ); + + @include mat.select-overrides( + ( + panel-background-color: var(--light-background) + ) + ); + @include mat.table-overrides( ( row-item-outline-color: rgba(var(--dark-dividers)) @@ -196,6 +215,7 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); title-text-line-height: 1.2 ) ); + @include mat.table-overrides( ( row-item-outline-color: rgba(var(--light-dividers))