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.pointSize: 18
|
||||||
font.bold: true
|
font.bold: true
|
||||||
|
color: "white"
|
||||||
|
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
anchors.topMargin: 15
|
anchors.topMargin: 15
|
||||||
|
@ -109,6 +110,7 @@ Rectangle {
|
||||||
id: usernameLabel
|
id: usernameLabel
|
||||||
|
|
||||||
text: "Username"
|
text: "Username"
|
||||||
|
color: "white"
|
||||||
|
|
||||||
anchors.top: loginLabel.bottom
|
anchors.top: loginLabel.bottom
|
||||||
anchors.topMargin: 20
|
anchors.topMargin: 20
|
||||||
|
@ -120,6 +122,7 @@ Rectangle {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
|
||||||
anchors.top: usernameLabel.bottom
|
anchors.top: usernameLabel.bottom
|
||||||
|
color: "white"
|
||||||
|
|
||||||
background: Rectangle {
|
background: Rectangle {
|
||||||
color: Qt.rgba(0.1, 0.1, 0.1, 0.3)
|
color: Qt.rgba(0.1, 0.1, 0.1, 0.3)
|
||||||
|
@ -134,6 +137,7 @@ Rectangle {
|
||||||
|
|
||||||
anchors.top: usernameField.bottom
|
anchors.top: usernameField.bottom
|
||||||
anchors.topMargin: 5
|
anchors.topMargin: 5
|
||||||
|
color: "white"
|
||||||
|
|
||||||
text: "Password"
|
text: "Password"
|
||||||
}
|
}
|
||||||
|
@ -146,6 +150,7 @@ Rectangle {
|
||||||
anchors.top: passwordLabel.bottom
|
anchors.top: passwordLabel.bottom
|
||||||
|
|
||||||
echoMode: TextInput.Password
|
echoMode: TextInput.Password
|
||||||
|
color: "white"
|
||||||
|
|
||||||
background: Rectangle {
|
background: Rectangle {
|
||||||
color: Qt.rgba(0.1, 0.1, 0.1, 0.3)
|
color: Qt.rgba(0.1, 0.1, 0.1, 0.3)
|
||||||
|
|
|
@ -6,7 +6,7 @@ import QtQuick.Shapes 1.0
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: serverSelect
|
id: serverSelect
|
||||||
|
|
||||||
color: Qt.rgba(0.1, 0.1, 0.1, 1.0)
|
color: myPalette.window
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: 700
|
width: 700
|
||||||
|
@ -43,7 +43,7 @@ Rectangle {
|
||||||
font.pointSize: 11
|
font.pointSize: 11
|
||||||
font.bold: true
|
font.bold: true
|
||||||
|
|
||||||
color: "white"
|
color: myPalette.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
@ -57,7 +57,7 @@ Rectangle {
|
||||||
|
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
|
|
||||||
color: "white"
|
color: myPalette.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
@ -71,7 +71,7 @@ Rectangle {
|
||||||
font.pointSize: 11
|
font.pointSize: 11
|
||||||
font.bold: true
|
font.bold: true
|
||||||
|
|
||||||
color: "white"
|
color: myPalette.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
@ -85,7 +85,7 @@ Rectangle {
|
||||||
|
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
|
|
||||||
color: "white"
|
color: myPalette.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
@ -99,7 +99,7 @@ Rectangle {
|
||||||
font.pointSize: 11
|
font.pointSize: 11
|
||||||
font.bold: true
|
font.bold: true
|
||||||
|
|
||||||
color: "white"
|
color: myPalette.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
@ -113,7 +113,7 @@ Rectangle {
|
||||||
|
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
|
|
||||||
color: "white"
|
color: myPalette.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
@ -127,7 +127,7 @@ Rectangle {
|
||||||
font.pointSize: 11
|
font.pointSize: 11
|
||||||
font.bold: true
|
font.bold: true
|
||||||
|
|
||||||
color: "white"
|
color: myPalette.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
@ -141,7 +141,7 @@ Rectangle {
|
||||||
|
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
|
|
||||||
color: "white"
|
color: myPalette.text
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
|
Reference in a new issue