From dceeb88444ce966caa1a133d2926d5f7213c87ff Mon Sep 17 00:00:00 2001 From: Monzero Build System Date: Sat, 15 Aug 2026 21:26:40 +0100 Subject: Establish Monzero GUI Phase 0 baseline --- components/LabelButton.qml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'components/LabelButton.qml') diff --git a/components/LabelButton.qml b/components/LabelButton.qml index b7a40651..4f181f37 100644 --- a/components/LabelButton.qml +++ b/components/LabelButton.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2024, The Monero Project +// Copyright (c) 2014-2024, The Monzero Project // // All rights reserved. // @@ -29,7 +29,7 @@ import QtQuick 2.9 import QtQuick.Layouts 1.1 -import "../components" as MoneroComponents +import "../components" as MonzeroComponents Rectangle { @@ -37,22 +37,22 @@ Rectangle { property alias text: labelButtonText.text id: labelButton - color: MoneroComponents.Style.buttonBackgroundColorDisabled + color: MonzeroComponents.Style.buttonBackgroundColorDisabled radius: 3 height: 20 width: labelButtonText.width + 14 anchors.right: copyButton.left anchors.rightMargin: 6 - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { id: labelButtonText anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 12 font.bold: true text: "" - color: MoneroComponents.Style.inlineButtonTextColor + color: MonzeroComponents.Style.inlineButtonTextColor } MouseArea { @@ -61,11 +61,11 @@ Rectangle { hoverEnabled: true onClicked: labelButton.clicked() onEntered: { - labelButton.color = MoneroComponents.Style.buttonBackgroundColorDisabledHover; + labelButton.color = MonzeroComponents.Style.buttonBackgroundColorDisabledHover; labelButtonText.opacity = 0.8; } onExited: { - labelButton.color = MoneroComponents.Style.buttonBackgroundColorDisabled; + labelButton.color = MonzeroComponents.Style.buttonBackgroundColorDisabled; labelButtonText.opacity = 1.0; } } -- cgit v1.2.3