From a993386613319a966ae90c5ea8e3e372fd6d31ff Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Wed, 18 Oct 2017 15:13:28 -0700 Subject: [PATCH] Change color of 'Instructions Opened on Desktop' to disabled gray --- .../resources/qml/hifi/commerce/wallet/Security.qml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/interface/resources/qml/hifi/commerce/wallet/Security.qml b/interface/resources/qml/hifi/commerce/wallet/Security.qml index 0f2edbe913..485b0ec086 100644 --- a/interface/resources/qml/hifi/commerce/wallet/Security.qml +++ b/interface/resources/qml/hifi/commerce/wallet/Security.qml @@ -290,7 +290,17 @@ Item { id: removeHmdContainer; z: 998; visible: false; - color: hifi.colors.blueHighlight; + + gradient: Gradient { + GradientStop { + position: 0.2; + color: hifi.colors.baseGrayHighlight; + } + GradientStop { + position: 1.0; + color: hifi.colors.baseGrayShadow; + } + } anchors.fill: backupInstructionsButton; radius: 5; MouseArea {