From dbf34142e133703dfd9cb7bfeb81add604c8c140 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Tue, 17 Nov 2020 11:23:05 -0500 Subject: [PATCH] fix: emoji category button having a white background --- ui/shared/status/StatusEmojiCategoryButton.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/shared/status/StatusEmojiCategoryButton.qml b/ui/shared/status/StatusEmojiCategoryButton.qml index 772f0809d3..75d83b024a 100644 --- a/ui/shared/status/StatusEmojiCategoryButton.qml +++ b/ui/shared/status/StatusEmojiCategoryButton.qml @@ -11,6 +11,7 @@ Rectangle { id: categoryButton width: 40 height: 40 + color: Style.current.transparent SVGImage { width: 20 @@ -23,7 +24,7 @@ Rectangle { ColorOverlay { anchors.fill: parent source: parent - color: categoryButton.active ? Style.current.blue : Style.current.transparent + color: categoryButton.active ? Style.current.primary : Style.current.transparent } Rectangle { @@ -31,7 +32,7 @@ Rectangle { width: parent.width height: 2 radius: 1 - color: Style.current.blue + color: Style.current.primary anchors.bottom: parent.bottom anchors.bottomMargin: -Style.current.smallPadding }