diff options
| author | Alexander Blair <snipa@jagtech.io> | 2020-10-19 00:09:41 -0700 |
|---|---|---|
| committer | Alexander Blair <snipa@jagtech.io> | 2020-10-19 00:09:52 -0700 |
| commit | 7a285b36139e4564c17e31e18e49459f649b1081 (patch) | |
| tree | b674e0696a760b50bdc01a8e4e549511b7c7c432 | |
| parent | cb1f3ad0ce228b9c272df76838754e303b074a32 (diff) | |
| parent | 05733c14b7877695c414a7d7865ec12fb5166a80 (diff) | |
| download | monzero-gui-7a285b36139e4564c17e31e18e49459f649b1081.tar.gz monzero-gui-7a285b36139e4564c17e31e18e49459f649b1081.tar.xz monzero-gui-7a285b36139e4564c17e31e18e49459f649b1081.zip | |
Merge pull request #3136
05733c14 Transfer: fix help text (white theme) (selsta)
| -rw-r--r-- | pages/Transfer.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pages/Transfer.qml b/pages/Transfer.qml index c3ebeff3..dce9179b 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -553,7 +553,8 @@ Rectangle { if (appWindow.viewOnly && !appWindow.isTrustedDaemon()){ errorMessage = "<p class='orange'>" + qsTr("* To import, you must connect to a local node or a trusted remote node") + "</p>"; } - return "<style type='text/css'>p{line-height:20px; margin-top:0px; margin-bottom:0px; color:#ffffff;} p.orange{color:#ff9323;}</style>" + + return "<style type='text/css'>p{line-height:20px; margin-top:0px; margin-bottom:0px; color:" + MoneroComponents.Style.defaultFontColor + + ";} p.orange{color:#ff9323;}</style>" + "<p>" + qsTr("1. Using cold wallet, export the key images into a file") + "</p>" + "<p>" + qsTr("2. Using view-only wallet, import the key images file") + "</p>" + errorMessage + translationManager.emptyString @@ -593,7 +594,8 @@ Rectangle { if (appWindow.viewOnly && !pageRoot.checkInformation(amountLine.text, addressLine.text, appWindow.persistentSettings.nettype)){ errorMessage = "<p class='orange'>" + qsTr("* To create a transaction file, please enter address and amount above") + "</p>"; } - return "<style type='text/css'>p{line-height:20px; margin-top:0px; margin-bottom:0px; color:#ffffff;} p.orange{color:#ff9323;}</style>" + + return "<style type='text/css'>p{line-height:20px; margin-top:0px; margin-bottom:0px; color:" + MoneroComponents.Style.defaultFontColor + + ";} p.orange{color:#ff9323;}</style>" + "<p>" + qsTr("1. Using view-only wallet, export the outputs into a file") + "</p>" + "<p>" + qsTr("2. Using cold wallet, import the outputs file and export the key images") + "</p>" + "<p>" + qsTr("3. Using view-only wallet, import the key images file and create a transaction file") + "</p>" + |
