aboutsummaryrefslogtreecommitdiff
path: root/components/InputDialog.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/InputDialog.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/InputDialog.qml')
-rw-r--r--components/InputDialog.qml26
1 files changed, 13 insertions, 13 deletions
diff --git a/components/InputDialog.qml b/components/InputDialog.qml
index 40e3e445..eb21963c 100644
--- a/components/InputDialog.qml
+++ b/components/InputDialog.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -33,7 +33,7 @@ import QtQuick.Layouts 1.1
import QtQuick.Controls.Styles 1.4
import QtQuick.Window 2.0
-import "../components" as MoneroComponents
+import "../components" as MonzeroComponents
Item {
id: root
@@ -79,33 +79,33 @@ Item {
Layout.fillWidth: true
font.pixelSize: 16
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
- color: MoneroComponents.Style.defaultFontColor
+ color: MonzeroComponents.Style.defaultFontColor
}
- MoneroComponents.Input {
+ MonzeroComponents.Input {
id : input
focus: true
Layout.topMargin: 6
Layout.fillWidth: true
horizontalAlignment: TextInput.AlignLeft
verticalAlignment: TextInput.AlignVCenter
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
font.pixelSize: 24
KeyNavigation.tab: okButton
bottomPadding: 10
leftPadding: 10
topPadding: 10
- color: MoneroComponents.Style.defaultFontColor
- selectionColor: MoneroComponents.Style.textSelectionColor
- selectedTextColor: MoneroComponents.Style.textSelectedColor
+ color: MonzeroComponents.Style.defaultFontColor
+ selectionColor: MonzeroComponents.Style.textSelectionColor
+ selectedTextColor: MonzeroComponents.Style.textSelectedColor
background: Rectangle {
radius: 2
- border.color: MoneroComponents.Style.inputBorderColorActive
+ border.color: MonzeroComponents.Style.inputBorderColorActive
border.width: 1
- color: MoneroComponents.Style.blackTheme ? "black" : "#A9FFFFFF"
+ color: MonzeroComponents.Style.blackTheme ? "black" : "#A9FFFFFF"
}
Keys.enabled: root.visible
@@ -127,7 +127,7 @@ Item {
Layout.topMargin: 16
Layout.alignment: Qt.AlignRight
- MoneroComponents.StandardButton {
+ MonzeroComponents.StandardButton {
id: cancelButton
primary: false
small: true
@@ -140,7 +140,7 @@ Item {
root.rejected()
}
}
- MoneroComponents.StandardButton {
+ MonzeroComponents.StandardButton {
id: okButton
small: true
width: 120