From 2a59ab402d94cd2db57756fc71f863189708b744 Mon Sep 17 00:00:00 2001 From: hydr063n Date: Mon, 28 Sep 2020 19:11:15 +0200 Subject: [PATCH] fix: top bar theme color --- ui/imports/Themes/DarkTheme.qml | 1 + ui/imports/Themes/LightTheme.qml | 1 + ui/shared/status/StatusChatInfoButton.qml | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/imports/Themes/DarkTheme.qml b/ui/imports/Themes/DarkTheme.qml index f0d1828c83..62f8a4e527 100644 --- a/ui/imports/Themes/DarkTheme.qml +++ b/ui/imports/Themes/DarkTheme.qml @@ -47,6 +47,7 @@ Theme { property color backgroundTertiary: tenPercentBlue property color pillButtonTextColor: almostBlack property color chatReplyCurrentUser: darkerGrey + property color topBarChatInfoColor: darkerGrey property color buttonForegroundColor: blue property color buttonBackgroundColor: secondaryBackground diff --git a/ui/imports/Themes/LightTheme.qml b/ui/imports/Themes/LightTheme.qml index aa8e7b3903..22e3d49bd4 100644 --- a/ui/imports/Themes/LightTheme.qml +++ b/ui/imports/Themes/LightTheme.qml @@ -46,6 +46,7 @@ Theme { property color backgroundTertiary: tenPercentBlue property color pillButtonTextColor: white property color chatReplyCurrentUser: lighterDarkGrey + property color topBarChatInfoColor: grey property color buttonForegroundColor: blue property color buttonBackgroundColor: secondaryBackground diff --git a/ui/shared/status/StatusChatInfoButton.qml b/ui/shared/status/StatusChatInfoButton.qml index 94ac58b75a..0d756b2e6e 100644 --- a/ui/shared/status/StatusChatInfoButton.qml +++ b/ui/shared/status/StatusChatInfoButton.qml @@ -28,7 +28,7 @@ Button { } background: Rectangle { - color: control.hovered ? Style.current.grey : "transparent" + color: control.hovered ? Style.current.topBarChatInfoColor : "transparent" radius: Style.current.radius }