Themeing changes

This commit is contained in:
=
2025-08-02 20:14:10 -05:00
parent 6ece8fef6e
commit 124e6801b6

View File

@@ -37,10 +37,16 @@ Item {
}
height: 50
background: null
font.family: "Rajdhani"
font.capitalization: Font.AllUppercase
font.bold: true
font.pointSize: 30
contentItem: Text {
text: session.displayText
color: "white"
font.family: "Rajdhani"
font.capitalization: Font.AllUppercase
font.bold: true
font.pointSize: 30
verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
}
indicator: Image {
id: sessionArrow
source: "icons/down-arrow.png"
@@ -130,6 +136,7 @@ Item {
font.family: "Rajdhani"
font.pointSize: 30
font.bold: true
color: "white"
Keys.onEscapePressed: {
mainStack.forceActiveFocus();
}
@@ -162,13 +169,14 @@ Item {
font.family: "Rajdhani"
font.pointSize: 30
font.bold: true
color: "white"
Keys.onEscapePressed: {
mainStack.forceActiveFocus();
}
onAccepted: {
attemptingToLogin = true
var username = usernameField.text
if !usingCustomUser {
if (!usingCustomUser) {
username = userModel.lastUser.name
}
sddm.login(username, passwordField.text, session.index)