From 5d59cb3870bd8efd2c266ed2ad9909cd903c9f1a Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Tue, 13 Apr 2021 12:17:32 +0200 Subject: [PATCH] fix(ui): use proper color for badge border --- ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml | 2 +- ui/app/AppMain.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml b/ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml index 293b282bc1..fa43eddc36 100644 --- a/ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml +++ b/ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml @@ -53,7 +53,7 @@ Column { anchors.topMargin: 5 radius: height / 2 color: Style.current.blue - border.color: profileBtn.hovered ? Style.current.secondaryBackground : Style.current.background + border.color: profileBtn.hovered ? Style.current.secondaryBackground : Style.current.mainMenuBackground border.width: 2 width: 14 height: 14 diff --git a/ui/app/AppMain.qml b/ui/app/AppMain.qml index ced37dab1b..99f7ce62c5 100644 --- a/ui/app/AppMain.qml +++ b/ui/app/AppMain.qml @@ -429,7 +429,7 @@ RowLayout { anchors.topMargin: 1 radius: height / 2 color: Style.current.blue - border.color: chatBtn.hovered ? Style.current.secondaryBackground : Style.current.background + border.color: chatBtn.hovered ? Style.current.secondaryBackground : Style.current.mainMenuBackground border.width: 2 width: chatsModel.unreadMessagesCount < 10 ? 22 : messageCount.width + 14 height: 22