From 4ff5281f404fab0cd8162627ef8c3307f380d051 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Mon, 11 Jan 2021 14:30:33 +0100 Subject: [PATCH] uiux(Profile): theme color fixes for the contact list The "more actions" button in the contacts list had some hard coded colors for its hover effect which break the experience in dark mode. This commit makes changes those so that they work universally. --- ui/app/AppLayouts/Profile/Sections/Contacts/Contact.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Profile/Sections/Contacts/Contact.qml b/ui/app/AppLayouts/Profile/Sections/Contacts/Contact.qml index f31a2c38b9..9fefdb20ce 100644 --- a/ui/app/AppLayouts/Profile/Sections/Contacts/Contact.qml +++ b/ui/app/AppLayouts/Profile/Sections/Contacts/Contact.qml @@ -56,6 +56,7 @@ Rectangle { anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right radius: 8 + color: "transparent" SVGImage { source: "../../../../img/dots-icon.svg" @@ -72,10 +73,10 @@ Rectangle { anchors.fill: parent hoverEnabled: true onExited: { - menuButton.color = Style.current.white + menuButton.color = "transparent" } onEntered: { - menuButton.color = Style.current.grey + menuButton.color = Style.current.border } onClicked: { menuOpened = true