diff options
| author | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
|---|---|---|
| committer | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
| commit | dceeb88444ce966caa1a133d2926d5f7213c87ff (patch) | |
| tree | d74c9c7d7e43c2a0d39d656c690c63050cff7f53 /components/PasswordDialog.qml | |
| parent | 81f33c7e00bf183823909a02e6d96ce11e41adce (diff) | |
| download | monzero-gui-phase0-20260815.tar.gz monzero-gui-phase0-20260815.tar.xz monzero-gui-phase0-20260815.zip | |
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'components/PasswordDialog.qml')
| -rw-r--r-- | components/PasswordDialog.qml | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index f369593b..706b79d2 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2024, The Monero Project +// Copyright (c) 2014-2024, The Monzero Project // // All rights reserved. // @@ -34,8 +34,8 @@ import QtQuick.Controls.Styles 1.4 import QtQuick.Window 2.0 import FontAwesome 1.0 -import "." as MoneroComponents -import "effects/" as MoneroEffects +import "." as MonzeroComponents +import "effects/" as MonzeroEffects import "../js/Utils.js" as Utils FocusScope { @@ -172,9 +172,9 @@ FocusScope { 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 } Label { @@ -184,17 +184,17 @@ FocusScope { wrapMode: Text.Wrap font.pixelSize: 14 - font.family: MoneroComponents.Style.fontLight.name + font.family: MonzeroComponents.Style.fontLight.name - color: MoneroComponents.Style.warningColor + color: MonzeroComponents.Style.warningColor } Label { id: errorTextLabel visible: root.errorText || text !== "" - color: MoneroComponents.Style.errorColor + color: MonzeroComponents.Style.errorColor font.pixelSize: 16 - font.family: MoneroComponents.Style.fontLight.name + font.family: MonzeroComponents.Style.fontLight.name Layout.fillWidth: true wrapMode: Text.Wrap } @@ -202,15 +202,15 @@ FocusScope { Label { id: capsLockTextLabel visible: false - color: MoneroComponents.Style.errorColor + color: MonzeroComponents.Style.errorColor font.pixelSize: 16 - font.family: MoneroComponents.Style.fontLight.name + font.family: MonzeroComponents.Style.fontLight.name Layout.fillWidth: true wrapMode: Text.Wrap text: qsTr("CAPS LOCK IS ON.") + translationManager.emptyString; } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: passwordInput1 password: true input.focus: root.visible && (appWindow.active || Qt.application.state === Qt.ApplicationActive) @@ -247,12 +247,12 @@ FocusScope { 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.LineEdit { + MonzeroComponents.LineEdit { id: passwordInput2 passwordLinked: passwordInput1 visible: !passwordDialogMode @@ -284,7 +284,7 @@ FocusScope { Layout.topMargin: 16 Layout.alignment: Qt.AlignRight - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { id: cancelButton primary: false small: true @@ -293,7 +293,7 @@ FocusScope { onClicked: onCancel() } - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { id: okButton fontAwesomeIcon: true rightIcon: okButtonIcon @@ -311,10 +311,10 @@ FocusScope { Layout.fillWidth: true font.pixelSize: 14 - font.family: MoneroComponents.Style.fontLight.name + font.family: MonzeroComponents.Style.fontLight.name font.italic: true - color: MoneroComponents.Style.defaultFontColor + color: MonzeroComponents.Style.defaultFontColor } } } |
