Make Login and ServerSelection pages readable
This commit is contained in:
parent
cbea5c43dd
commit
4a40e72411
2 changed files with 14 additions and 9 deletions
|
@ -100,6 +100,7 @@ Rectangle {
|
|||
|
||||
font.pointSize: 18
|
||||
font.bold: true
|
||||
color: "white"
|
||||
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.topMargin: 15
|
||||
|
@ -109,6 +110,7 @@ Rectangle {
|
|||
id: usernameLabel
|
||||
|
||||
text: "Username"
|
||||
color: "white"
|
||||
|
||||
anchors.top: loginLabel.bottom
|
||||
anchors.topMargin: 20
|
||||
|
@ -120,6 +122,7 @@ Rectangle {
|
|||
width: parent.width
|
||||
|
||||
anchors.top: usernameLabel.bottom
|
||||
color: "white"
|
||||
|
||||
background: Rectangle {
|
||||
color: Qt.rgba(0.1, 0.1, 0.1, 0.3)
|
||||
|
@ -134,6 +137,7 @@ Rectangle {
|
|||
|
||||
anchors.top: usernameField.bottom
|
||||
anchors.topMargin: 5
|
||||
color: "white"
|
||||
|
||||
text: "Password"
|
||||
}
|
||||
|
@ -146,6 +150,7 @@ Rectangle {
|
|||
anchors.top: passwordLabel.bottom
|
||||
|
||||
echoMode: TextInput.Password
|
||||
color: "white"
|
||||
|
||||
background: Rectangle {
|
||||
color: Qt.rgba(0.1, 0.1, 0.1, 0.3)
|
||||
|
|
|
@ -6,7 +6,7 @@ import QtQuick.Shapes 1.0
|
|||
Rectangle {
|
||||
id: serverSelect
|
||||
|
||||
color: Qt.rgba(0.1, 0.1, 0.1, 1.0)
|
||||
color: myPalette.window
|
||||
|
||||
Rectangle {
|
||||
width: 700
|
||||
|
@ -43,7 +43,7 @@ Rectangle {
|
|||
font.pointSize: 11
|
||||
font.bold: true
|
||||
|
||||
color: "white"
|
||||
color: myPalette.text
|
||||
}
|
||||
|
||||
Text {
|
||||
|
@ -57,7 +57,7 @@ Rectangle {
|
|||
|
||||
wrapMode: Text.WordWrap
|
||||
|
||||
color: "white"
|
||||
color: myPalette.text
|
||||
}
|
||||
|
||||
Text {
|
||||
|
@ -71,7 +71,7 @@ Rectangle {
|
|||
font.pointSize: 11
|
||||
font.bold: true
|
||||
|
||||
color: "white"
|
||||
color: myPalette.text
|
||||
}
|
||||
|
||||
Text {
|
||||
|
@ -85,7 +85,7 @@ Rectangle {
|
|||
|
||||
wrapMode: Text.WordWrap
|
||||
|
||||
color: "white"
|
||||
color: myPalette.text
|
||||
}
|
||||
|
||||
Text {
|
||||
|
@ -99,7 +99,7 @@ Rectangle {
|
|||
font.pointSize: 11
|
||||
font.bold: true
|
||||
|
||||
color: "white"
|
||||
color: myPalette.text
|
||||
}
|
||||
|
||||
Text {
|
||||
|
@ -113,7 +113,7 @@ Rectangle {
|
|||
|
||||
wrapMode: Text.WordWrap
|
||||
|
||||
color: "white"
|
||||
color: myPalette.text
|
||||
}
|
||||
|
||||
Text {
|
||||
|
@ -127,7 +127,7 @@ Rectangle {
|
|||
font.pointSize: 11
|
||||
font.bold: true
|
||||
|
||||
color: "white"
|
||||
color: myPalette.text
|
||||
}
|
||||
|
||||
Text {
|
||||
|
@ -141,7 +141,7 @@ Rectangle {
|
|||
|
||||
wrapMode: Text.WordWrap
|
||||
|
||||
color: "white"
|
||||
color: myPalette.text
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
|
Reference in a new issue