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/InputDialog.qml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'components/InputDialog.qml') 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 -- cgit v1.2.3