fix: top bar theme color

This commit is contained in:
hydr063n 2020-09-28 19:11:15 +02:00 committed by Iuri Matias
parent d41bae62f7
commit 2a59ab402d
3 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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
}