diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-09 18:10:11 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-09 18:10:11 +1000 |
| commit | 3a8b9c61be5ab4babfbd5b54db5069defc6e5ad3 (patch) | |
| tree | 3db97d474787e33b5182ac40824e66df61a85ec1 /modules/notifications | |
| parent | dashboard: fix cover art rounding (diff) | |
| download | caelestia-shell-3a8b9c61be5ab4babfbd5b54db5069defc6e5ad3.tar.gz caelestia-shell-3a8b9c61be5ab4babfbd5b54db5069defc6e5ad3.tar.bz2 caelestia-shell-3a8b9c61be5ab4babfbd5b54db5069defc6e5ad3.zip | |
notifs: fix actions colour when transp
Also more colour adjustments
Diffstat (limited to 'modules/notifications')
| -rw-r--r-- | modules/notifications/Notification.qml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |