aboutsummaryrefslogtreecommitdiff
path: root/components/PrivacyLevelSmall.qml
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-03-03 16:18:57 +0200
committerRiccardo Spagni <ric@spagni.net>2017-03-03 16:18:57 +0200
commit14ea15e870ee2d9c5909dd3387f30d36894cb0e9 (patch)
treeb67eb5ff55ea73e358ab6c05acf946e32498a865 /components/PrivacyLevelSmall.qml
parentf11ec2d0bdb48d1e80cccf3fdca074a646de19b0 (diff)
parent67e504288f6f31712cbe56f000eae1452e73f295 (diff)
downloadmonzero-gui-14ea15e870ee2d9c5909dd3387f30d36894cb0e9.tar.gz
monzero-gui-14ea15e870ee2d9c5909dd3387f30d36894cb0e9.tar.xz
monzero-gui-14ea15e870ee2d9c5909dd3387f30d36894cb0e9.zip
Merge pull request #506
67e5042 Better styling for password meter (xmr-eric)
Diffstat (limited to 'components/PrivacyLevelSmall.qml')
-rw-r--r--components/PrivacyLevelSmall.qml18
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 {