Add .clicks to the exclusion of the forced .badge-notifications override with !important
Add .clicks to the exclusion in the forced override so it stays on its defaults so the forums posts don't look like horrible full of blue bubbles inside the posts.
from
.badge-notification:not(.new-reviewables):not(.new-topic), .topic-list-body .unseen-topic .badge-notification.new-topic::before, .badge-notification.unread-posts, .badge-notification.new-pms, .d-header-icons .unread-notifications { background-color: var(--notification-color) !important; font-weight: bold; border: none !important; }
to
.badge-notification:not(.new-reviewables):not(.new-topic):not(.clicks), .topic-list-body .unseen-topic .badge-notification.new-topic::before, .badge-notification.unread-posts, .badge-notification.new-pms, .d-header-icons .unread-notifications { background-color: var(--notification-color) !important; font-weight: bold; border: none !important; }
and reverse this commit 542c3267 so the .clicks stay on their defaults which were OK before the blue bubble forced override.
//EDIT: ignore this part:
(also doing forced overrides prohibits people from fixing the theme on their side with Dark Reader extension for example, using !important is not the proper solution to your theme customization, I can't fix it on my side so I'm force to have it fixed in the theme here)