summaryrefslogtreecommitdiff
path: root/modules/lock/Notification.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-08 19:32:38 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-08 19:32:38 +1000
commit5b8edfc1e29433b40bb1120043bc1b79010a6cc1 (patch)
tree99476b16b36a299b82e8497be9338d6cc760ef8c /modules/lock/Notification.qml
parentcontrolcenter: hide float button when floating (diff)
downloadcaelestia-shell-5b8edfc1e29433b40bb1120043bc1b79010a6cc1.tar.gz
caelestia-shell-5b8edfc1e29433b40bb1120043bc1b79010a6cc1.tar.bz2
caelestia-shell-5b8edfc1e29433b40bb1120043bc1b79010a6cc1.zip
internal: transparency support coming soon™
Also fix media player selector text colour Fix colour preview not resetting light/dark mode
Diffstat (limited to 'modules/lock/Notification.qml')
-rw-r--r--modules/lock/Notification.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/lock/Notification.qml b/modules/lock/Notification.qml
index c06db56..c9bf05e 100644
--- a/modules/lock/Notification.qml
+++ b/modules/lock/Notification.qml
@@ -19,7 +19,7 @@ StyledRect {
readonly property bool hasAppIcon: modelData.appIcon.length > 0
readonly property int nonAnimHeight: Math.max(image.height, details.implicitHeight) + Appearance.padding.normal * 2
- color: root.modelData.urgency === NotificationUrgency.Critical ? Colours.palette.m3secondaryContainer : Colours.palette.m3surfaceContainer
+ color: root.modelData.urgency === NotificationUrgency.Critical ? Colours.palette.m3secondaryContainer : Colours.tPalette.m3surfaceContainer
radius: Appearance.rounding.normal
implicitWidth: Config.notifs.sizes.width
@@ -113,7 +113,7 @@ StyledRect {
sourceComponent: StyledRect {
radius: Appearance.rounding.full
- color: root.modelData.urgency === NotificationUrgency.Critical ? Colours.palette.m3error : root.modelData.urgency === NotificationUrgency.Low ? Colours.palette.m3surfaceContainerHighest : Colours.palette.m3tertiaryContainer
+ color: root.modelData.urgency === NotificationUrgency.Critical ? Colours.palette.m3error : root.modelData.urgency === NotificationUrgency.Low ? Colours.tPalette.m3surfaceContainerHighest : Colours.palette.m3tertiaryContainer
implicitWidth: root.hasImage ? Config.notifs.sizes.badge : Config.notifs.sizes.image
implicitHeight: root.hasImage ? Config.notifs.sizes.badge : Config.notifs.sizes.image