From c8491b47527faac24755853268aea524f92b5615 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 17 Nov 2021 09:15:08 +0100 Subject: [PATCH] Remove background color from external link button CURA-8561 --- plugins/Marketplace/resources/qml/PackageCard.qml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/Marketplace/resources/qml/PackageCard.qml b/plugins/Marketplace/resources/qml/PackageCard.qml index 770731375f..3b549b2a38 100644 --- a/plugins/Marketplace/resources/qml/PackageCard.qml +++ b/plugins/Marketplace/resources/qml/PackageCard.qml @@ -52,8 +52,6 @@ Rectangle } ] - - Image //Separate column for icon on the left. { id: packageItem @@ -169,8 +167,6 @@ Rectangle iconSource: UM.Theme.getIcon("LinkExternal") hoverColor: UM.Theme.getColor("text_link") - backgroundColor: UM.Theme.getColor("detail_background") - hoverBackgroundColor: UM.Theme.getColor("action_button_hovered") onClicked: Qt.openUrlExternally(packageData.packageInfoUrl) } }