From 24d24c1f85d319f4973ab8a81561e11f26a6579d Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 12 Aug 2025 18:24:27 +0700 Subject: [PATCH] background: add missing raised style --- .../ii/modules/background/Background.qml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.config/quickshell/ii/modules/background/Background.qml b/.config/quickshell/ii/modules/background/Background.qml index 9db17ac0..ce726305 100644 --- a/.config/quickshell/ii/modules/background/Background.qml +++ b/.config/quickshell/ii/modules/background/Background.qml @@ -264,14 +264,16 @@ Variants { Layout.fillWidth: false iconSize: Appearance.font.pixelSize.huge color: bgRoot.colText + style: Text.Raised + styleColor: Appearance.colors.colShadow } StyledText { Layout.fillWidth: false text: "Locked" color: bgRoot.colText - font { - pixelSize: Appearance.font.pixelSize.larger - } + font.pixelSize: Appearance.font.pixelSize.larger + style: Text.Raised + styleColor: Appearance.colors.colShadow } Item { Layout.fillWidth: bgRoot.textHorizontalAlignment !== Text.AlignRight; implicitWidth: 1 } @@ -293,9 +295,9 @@ Variants { } text: GlobalStates.screenUnlockFailed ? Translation.tr("Incorrect password") : Translation.tr("Enter password") color: GlobalStates.screenUnlockFailed ? Appearance.colors.colError : bgRoot.colText - font { - pixelSize: Appearance.font.pixelSize.normal - } + style: Text.Raised + styleColor: Appearance.colors.colShadow + font.pixelSize: Appearance.font.pixelSize.normal } } }