diff --git a/components/2.0/PasswordRenewal.qml b/components/2.0/PasswordRenewal.qml index 907c2d2..af54f1e 100644 --- a/components/2.0/PasswordRenewal.qml +++ b/components/2.0/PasswordRenewal.qml @@ -48,7 +48,8 @@ FocusScope { property int infosWidth: 520 property int infosHeight: 150 - property color promptColor: "black" + property color promptColor: "white" + property color newStyleColor: "black" property color infosColor: "red" property alias color: dialog.color // dialog background property alias radius: dialog.radius @@ -158,6 +159,8 @@ FocusScope { id: prompt1Txt Layout.minimumWidth: 64 Layout.alignment: Qt.AlignRight + styleColor: newStyleColor + style: Text.Outline color: promptColor text: qsTr("New password:") } @@ -181,6 +184,8 @@ FocusScope { id: prompt2Txt Layout.minimumWidth: 64 Layout.alignment: Qt.AlignRight + styleColor: newStyleColor + style: Text.Outline color: promptColor text: qsTr("Repeat password:") }