diff options
| author | xmr-eric <eric@moneroeric.com> | 2017-02-27 19:50:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-27 19:50:58 -0500 |
| commit | 67e504288f6f31712cbe56f000eae1452e73f295 (patch) | |
| tree | efe7c5f33b55e9d2c4a94d54be577bdffeb6c8f1 /components/PrivacyLevelSmall.qml | |
| parent | e826f7c1ecdcdc1e588e67b07278f7433cd867eb (diff) | |
| download | monzero-gui-67e504288f6f31712cbe56f000eae1452e73f295.tar.gz monzero-gui-67e504288f6f31712cbe56f000eae1452e73f295.tar.xz monzero-gui-67e504288f6f31712cbe56f000eae1452e73f295.zip | |
Better styling for password meter
Diffstat (limited to 'components/PrivacyLevelSmall.qml')
| -rw-r--r-- | components/PrivacyLevelSmall.qml | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/components/PrivacyLevelSmall.qml b/components/PrivacyLevelSmall.qml index cf9169f8..ebd97787 100644 --- a/components/PrivacyLevelSmall.qml +++ b/components/PrivacyLevelSmall.qml @@ -94,34 +94,28 @@ Item { Text { anchors.verticalCenter: parent.verticalCenter font.family: "Arial" - font.pixelSize: 11 - font.letterSpacing: -1 - font.bold: true + font.pixelSize: 15 color: "#000000" x: row.x + (row.positions[0] !== undefined ? row.positions[0].currentX - 3 : 0) - width - text: qsTr("LOW") + translationManager.emptyString + text: qsTr("Low") + translationManager.emptyString } Text { anchors.verticalCenter: parent.verticalCenter font.family: "Arial" - font.pixelSize: 11 - font.letterSpacing: -1 - font.bold: true + font.pixelSize: 15 color: "#000000" x: row.x + (row.positions[4] !== undefined ? row.positions[4].currentX - 3 : 0) - width - text: qsTr("MEDIUM") + translationManager.emptyString + text: qsTr("Medium") + translationManager.emptyString } Text { anchors.verticalCenter: parent.verticalCenter font.family: "Arial" - font.pixelSize: 11 - font.letterSpacing: -1 - font.bold: true + font.pixelSize: 15 color: "#000000" x: row.x + (row.positions[13] !== undefined ? row.positions[13].currentX - 3 : 0) - width - text: qsTr("HIGH") + translationManager.emptyString + text: qsTr("High") + translationManager.emptyString } MouseArea { |
