changed background

This commit is contained in:
WanderingPenwing 2024-07-31 23:26:26 +02:00
parent 5cc141b15e
commit f21b847fc1
3 changed files with 5 additions and 0 deletions

View file

@ -75,6 +75,7 @@ Column {
text: model.name text: model.name
font.pointSize: root.font.pointSize * 0.8 font.pointSize: root.font.pointSize * 0.8
font.capitalization: Font.Capitalize font.capitalization: Font.Capitalize
font.family: config.Font
color: selectUser.highlightedIndex === index ? root.palette.highlight.hslLightness >= 0.7 ? "#16161E" : "white" : root.palette.window.hslLightness >= 0.8 ? root.palette.highlight.hslLightness >= 0.8 ? "#16161E" : root.palette.highlight : "white" color: selectUser.highlightedIndex === index ? root.palette.highlight.hslLightness >= 0.7 ? "#16161E" : "white" : root.palette.window.hslLightness >= 0.8 ? root.palette.highlight.hslLightness >= 0.8 ? "#16161E" : root.palette.highlight : "white"
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
@ -314,6 +315,7 @@ Column {
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
anchors.left: indicator.right anchors.left: indicator.right
anchors.leftMargin: indicator.width / 2 anchors.leftMargin: indicator.width / 2
font.family: config.Font
font.pointSize: root.font.pointSize * 0.8 font.pointSize: root.font.pointSize * 0.8
color: root.palette.text color: root.palette.text
} }
@ -470,6 +472,7 @@ Column {
text: parent.text text: parent.text
color: config.OverrideLoginButtonTextColor != "" ? config.OverrideLoginButtonTextColor : root.palette.highlight.hslLightness >= 0.7 ? "#16161E" : "white" color: config.OverrideLoginButtonTextColor != "" ? config.OverrideLoginButtonTextColor : root.palette.highlight.hslLightness >= 0.7 ? "#16161E" : "white"
font.pointSize: root.font.pointSize font.pointSize: root.font.pointSize
font.family: config.Font
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
opacity: 0.5 opacity: 0.5

View file

@ -91,6 +91,7 @@ Item {
anchors.left: parent.left anchors.left: parent.left
anchors.leftMargin: 3 anchors.leftMargin: 3
font.pointSize: root.font.pointSize * 0.8 font.pointSize: root.font.pointSize * 0.8
font.family: config.Font
Keys.onReleased: parent.popup.open() Keys.onReleased: parent.popup.open()
} }

View file

@ -44,6 +44,7 @@ RowLayout {
RoundButton { RoundButton {
text: modelData[1] text: modelData[1]
font.family: config.Font
font.pointSize: root.font.pointSize * 0.8 font.pointSize: root.font.pointSize * 0.8
Layout.alignment: Qt.AlignHCenter Layout.alignment: Qt.AlignHCenter
icon.source: modelData ? Qt.resolvedUrl("../Assets/" + modelData[0] + ".svgz") : "" icon.source: modelData ? Qt.resolvedUrl("../Assets/" + modelData[0] + ".svgz") : ""