From 43e515f2a7ff330130710b46436f38d6e418aba2 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Wed, 23 Jul 2025 17:32:07 -0500 Subject: [PATCH] Always display the mark-as-unread button in previously seen --- app/assets/stylesheets/notifications.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/assets/stylesheets/notifications.css b/app/assets/stylesheets/notifications.css index fccedf91e..76b946b30 100644 --- a/app/assets/stylesheets/notifications.css +++ b/app/assets/stylesheets/notifications.css @@ -39,6 +39,18 @@ .card { box-shadow: 0 0 0 1px var(--color-ink-lighter); } + + .card__notification-unread-indicator { + --btn-background: transparent; + + &:before { + opacity: 0; + } + + .icon { + opacity: 1; + } + } }