aboutsummaryrefslogtreecommitdiff
path: root/components/LabelButton.qml
diff options
context:
space:
mode:
authorMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
committerMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
commitdceeb88444ce966caa1a133d2926d5f7213c87ff (patch)
treed74c9c7d7e43c2a0d39d656c690c63050cff7f53 /components/LabelButton.qml
parent81f33c7e00bf183823909a02e6d96ce11e41adce (diff)
downloadmonzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.gz
monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.xz
monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.zip
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'components/LabelButton.qml')
-rw-r--r--components/LabelButton.qml16
1 files changed, 8 insertions, 8 deletions
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;
}
}