From 69a6c052db3f4cabdb778e1e6e6fffa49058d1af Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Sun, 28 Sep 2025 10:55:48 -0400 Subject: [PATCH] LockScreen: adapted custom tooltips to the new lighter look. --- Modules/LockScreen/LockScreen.qml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Modules/LockScreen/LockScreen.qml b/Modules/LockScreen/LockScreen.qml index a1b0622c..be75508c 100644 --- a/Modules/LockScreen/LockScreen.qml +++ b/Modules/LockScreen/LockScreen.qml @@ -894,7 +894,7 @@ Loader { anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.top anchors.bottomMargin: Style.marginM * scaling - radius: Style.radiusM * scaling + radius: Style.radiusS * scaling color: Color.mSurface border.color: Color.mOutline border.width: Math.max(1, Style.borderS * scaling) @@ -905,7 +905,8 @@ Loader { anchors.margins: Style.marginM * scaling anchors.fill: parent text: I18n.tr("lock-screen.shut-down") - font.pointSize: Style.fontSizeM * scaling + font.pointSize: Style.fontSizeS * scaling + color: Color.mOnSurfaceVariant horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter } @@ -945,7 +946,7 @@ Loader { anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.top anchors.bottomMargin: Style.marginM * scaling - radius: Style.radiusM * scaling + radius: Style.radiusS * scaling color: Color.mSurface border.color: Color.mOutline border.width: Math.max(1, Style.borderS * scaling) @@ -956,7 +957,8 @@ Loader { anchors.margins: Style.marginM * scaling anchors.fill: parent text: I18n.tr("lock-screen.restart") - font.pointSize: Style.fontSizeM * scaling + font.pointSize: Style.fontSizeS * scaling + color: Color.mOnSurfaceVariant horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter } @@ -997,7 +999,7 @@ Loader { anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.top anchors.bottomMargin: Style.marginM * scaling - radius: Style.radiusM * scaling + radius: Style.radiusS * scaling color: Color.mSurface border.color: Color.mOutline border.width: Math.max(1, Style.borderS * scaling) @@ -1008,7 +1010,8 @@ Loader { anchors.margins: Style.marginM * scaling anchors.fill: parent text: I18n.tr("lock-screen.suspend") - font.pointSize: Style.fontSizeM * scaling + font.pointSize: Style.fontSizeS * scaling + color: Color.mOnSurfaceVariant horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter }