From 64ad9bafb781a38c3918021644700cc2205c9503 Mon Sep 17 00:00:00 2001 From: Michele Folci Date: Fri, 5 Jun 2026 00:30:02 +0200 Subject: [PATCH 1/2] Update notification background styles After updating to dotfiles 2.13.0 from 2.9.9.5 the background of notifications disappeard for the modern theme. I did this to have something similar to the previous one. --- dotfiles/.config/swaync/themes/modern/notifications.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dotfiles/.config/swaync/themes/modern/notifications.css b/dotfiles/.config/swaync/themes/modern/notifications.css index e94a36931..fe85672cb 100644 --- a/dotfiles/.config/swaync/themes/modern/notifications.css +++ b/dotfiles/.config/swaync/themes/modern/notifications.css @@ -33,13 +33,17 @@ padding: 0px; } -.floating-notifications.background .notification-row .notification-background .notification.critical { - background: @base; /* translucent blur */ +.floating-notifications.background .notification-row .notification-background .notification { + background: rgba(84, 84, 84, 0.65); //@base; border-radius: 10px; border: 2px solid @primary; margin: 5px 10px; + padding: 14px; } +.floating-notifications.background .notification-row .notification-background .notification.critical { + border: 2px solid @error; + .floating-notifications.background .notification-row .notification-background From 77eb23a887e368b676f9f7dc3b3fcd0f35815604 Mon Sep 17 00:00:00 2001 From: Michele Folci Date: Fri, 5 Jun 2026 12:30:48 +0200 Subject: [PATCH 2/2] Fix comment syntax in notification background style Updated comment syntax in notifications.css. --- dotfiles/.config/swaync/themes/modern/notifications.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.config/swaync/themes/modern/notifications.css b/dotfiles/.config/swaync/themes/modern/notifications.css index fe85672cb..147df7874 100644 --- a/dotfiles/.config/swaync/themes/modern/notifications.css +++ b/dotfiles/.config/swaync/themes/modern/notifications.css @@ -34,7 +34,7 @@ } .floating-notifications.background .notification-row .notification-background .notification { - background: rgba(84, 84, 84, 0.65); //@base; + background: rgba(84, 84, 84, 0.65); /* @base; */ border-radius: 10px; border: 2px solid @primary; margin: 5px 10px;