1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

settings: various consistency issues fixed

part of #725
This commit is contained in:
bbedward
2025-11-15 12:05:44 -05:00
parent 7e17e7d37a
commit 20f7d60147
15 changed files with 46 additions and 31 deletions

View File

@@ -139,7 +139,7 @@ Rectangle {
}
StyledText {
text: DgopService.distribution || "Linux"
text: UserInfoService.hostname || "Linux"
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceVariantText
elide: Text.ElideRight

View File

@@ -12,9 +12,9 @@ FocusScope {
Rectangle {
anchors.fill: parent
anchors.leftMargin: 0
anchors.rightMargin: Theme.spacingS
anchors.bottomMargin: Theme.spacingM
anchors.leftMargin: Theme.spacingS
anchors.rightMargin: 0
anchors.bottomMargin: 0
anchors.topMargin: 0
color: "transparent"

View File

@@ -66,7 +66,7 @@ Rectangle {
Column {
id: sidebarColumn
width: parent.width
anchors.fill: parent
anchors.leftMargin: Theme.spacingS
anchors.rightMargin: Theme.spacingS
anchors.bottomMargin: Theme.spacingS
@@ -100,7 +100,7 @@ Rectangle {
property bool isActive: sidebarContainer.currentIndex === index
width: sidebarColumn.width - Theme.spacingS * 2
width: parent.width
height: 44
radius: Theme.cornerRadius
color: isActive ? Theme.primary : tabMouseArea.containsMouse ? Theme.surfaceHover : "transparent"