From 3a8b9c61be5ab4babfbd5b54db5069defc6e5ad3 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 9 Aug 2025 18:10:11 +1000 Subject: notifs: fix actions colour when transp Also more colour adjustments --- modules/notifications/Notification.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/notifications/Notification.qml b/modules/notifications/Notification.qml index 080ee7b..73bfce2 100644 --- a/modules/notifications/Notification.qml +++ b/modules/notifications/Notification.qml @@ -450,7 +450,7 @@ StyledRect { required property var modelData radius: Appearance.rounding.full - color: root.modelData.urgency === NotificationUrgency.Critical ? Colours.palette.m3secondary : Colours.tPalette.m3surfaceContainerHigh + color: root.modelData.urgency === NotificationUrgency.Critical ? Colours.palette.m3secondary : Colours.layer(Colours.palette.m3surfaceContainerHigh, 2) Layout.preferredWidth: actionText.width + Appearance.padding.normal * 2 Layout.preferredHeight: actionText.height + Appearance.padding.small * 2 -- cgit v1.2.3-freya