From 3b77dd3c61fafce6553e6c6d773caee12792903c Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Tue, 28 Apr 2026 14:54:35 +0200 Subject: [PATCH] feat(ui): numeric count badge replaces dot indicator The bell icon now shows a numeric badge (capped at "99+") when there are notifications, instead of the previous solid dot. The dot is kept for the warning and pending-permission states. The badge re-keys on every count change so the pop animation re-fires whenever a new notification arrives. * IconNotification.vue: count prop with default 0; renders the dot SVG only when warning or pending-permission, the plain bell + badge otherwise * NotificationsApp.vue: passes notifications.length as :count * styles.scss: badge styling and badge-pop keyframe Signed-off-by: Frank Karlitschek --- src/Components/IconNotification.vue | 20 +++++++++++++++++--- src/NotificationsApp.vue | 1 + src/styles/styles.scss | 29 +++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+), 3 deletions(-) diff --git a/src/Components/IconNotification.vue b/src/Components/IconNotification.vue index 57bed2ff7..6bf533adc 100644 --- a/src/Components/IconNotification.vue +++ b/src/Components/IconNotification.vue @@ -4,9 +4,10 @@ -->