diff --git a/projects/common/src/fm/actions/app-common.actions.ts b/projects/common/src/fm/actions/app-common.actions.ts
index 71e17e7..7175cc4 100644
--- a/projects/common/src/fm/actions/app-common.actions.ts
+++ b/projects/common/src/fm/actions/app-common.actions.ts
@@ -85,6 +85,9 @@ export const SETUNREADNOTIFICATIONS = '[AppCommon] SetUnreadNotifications';
export const SWITCHLANGUAGE = '[AppCommon] SwitchLanguage';
+export const SETSETTINGMENUBACKGROUNDCOLOR = '[AppCommon] SetSettingMenuBackgroundColor';
+
+
export class InitUser implements Action {
readonly type = INITUSER;
@@ -379,6 +382,11 @@ export class SwitchLanguage implements Action {
constructor(public locale:string) { }
}
+export class SetSettingMenuBackgroundColor implements Action {
+ readonly type = SETSETTINGMENUBACKGROUNDCOLOR;
+
+ constructor(public color:string) { }
+}
export type Actions = OpenModal
| InitRoot
@@ -427,6 +435,7 @@ export type Actions = OpenModal
| ToggleSettingMenu
| NotificationEvent
| SetUnreadNotifications
- | SwitchLanguage;
+ | SwitchLanguage
+ | SetSettingMenuBackgroundColor;
diff --git a/projects/common/src/fm/components/app/app.component.html b/projects/common/src/fm/components/app/app.component.html
index 1f33cf6..b025e09 100644
--- a/projects/common/src/fm/components/app/app.component.html
+++ b/projects/common/src/fm/components/app/app.component.html
@@ -33,7 +33,7 @@