This commit is contained in:
2025-01-12 03:59:59 -06:00
parent 3f0f8cb7d1
commit 549e192430

View File

@@ -73,17 +73,21 @@
// Lay out everything within as a column // Lay out everything within as a column
Column { Column {
id: mainColumn id: mainColumn
width: 400
anchors.centerIn: parent anchors.centerIn: parent
spacing: 24 spacing: 8
// This colum has our date and time // This colum has our date and time
Column { Column {
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width width: parent.width
spacing: 4 spacing: 4
Clock { Clock {
anchors.horizontalCenter: parent.horizontalCenter
id: clockTime id: clockTime
color: "#ebdbb2" color: "#ebdbb2"
timeFont.family: "IBM Plex Sans" timeFont.family: "IBM Plex Sans"
dateFont.family: timeFont.family
} }
} }
@@ -102,10 +106,16 @@
TextBox { TextBox {
id: name id: name
width: parent.width; height: 30 width: parent.width; height: 50
text: userModel.lastUser text: userModel.lastUser
font.family: "IBM Plex Sans" font.family: "IBM Plex Sans"
font.pixelSize: 13 font.pixelSize: 13
radius: 8
textColor: "#ebdbb2"
borderColor: "#32302f"
focusColor: "#83a598"
hoverColor: "#504945"
color: "#282828"
KeyNavigation.backtab: rebootButton; KeyNavigation.tab: password KeyNavigation.backtab: rebootButton; KeyNavigation.tab: password
@@ -133,9 +143,15 @@
PasswordBox { PasswordBox {
id: password id: password
width: parent.width; height: 30 width: parent.width; height: 50
font.family: "IBM Plex Sans" font.family: "IBM Plex Sans"
font.pixelSize: 13 font.pixelSize: 13
radius: 8
textColor: "#ebdbb2"
borderColor: "#32302f"
focusColor: "#83a598"
hoverColor: "#504945"
color: "#282828"
KeyNavigation.backtab: name; KeyNavigation.tab: session KeyNavigation.backtab: name; KeyNavigation.tab: session
@@ -164,9 +180,14 @@
ComboBox { ComboBox {
id: session id: session
width: parent.width; height: 30 width: parent.width; height: 50
font.family: "IBM Plex Sans" font.family: "IBM Plex Sans"
font.pixelSize: 13 font.pixelSize: 13
textColor: "#ebdbb2"
borderColor: "#32302f"
focusColor: "#83a598"
hoverColor: "#504945"
color: "#282828"
arrowIcon: Qt.resolvedUrl("angle-down.png") arrowIcon: Qt.resolvedUrl("angle-down.png")
@@ -209,6 +230,10 @@
font.family: "IBM Plex Sans" font.family: "IBM Plex Sans"
font.pixelSize: 13 font.pixelSize: 13
textColor: "#282828" textColor: "#282828"
color: "#83a598"
disabledColor: "#32302f"
activeColor: "#83a598"
pressedColor: "#458588"
} }
Button { Button {
@@ -223,6 +248,10 @@
font.family: "IBM Plex Sans" font.family: "IBM Plex Sans"
font.pixelSize: 13 font.pixelSize: 13
textColor: "#282828" textColor: "#282828"
color: "#83a598"
disabledColor: "#32302f"
activeColor: "#83a598"
pressedColor: "#458588"
} }
Button { Button {
@@ -237,6 +266,10 @@
font.family: "IBM Plex Sans" font.family: "IBM Plex Sans"
font.pixelSize: 13 font.pixelSize: 13
textColor: "#282828" textColor: "#282828"
color: "#83a598"
disabledColor: "#32302f"
activeColor: "#83a598"
pressedColor: "#458588"
} }
} }
} }