From f16662bcc05eeb3b6f873e177f73d93f2dbbe421 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 25 Sep 2025 08:36:22 +0200 Subject: [PATCH] If device has no hover, never hide notification dismiss --- dashboard/src/components/Headerbar.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dashboard/src/components/Headerbar.vue b/dashboard/src/components/Headerbar.vue index 497844d45..e4b400232 100644 --- a/dashboard/src/components/Headerbar.vue +++ b/dashboard/src/components/Headerbar.vue @@ -234,6 +234,12 @@ onUnmounted(() => { visibility: visible; } +@media (hover: none) { + .notification-item .notification-read-button { + visibility: visible; + } +} + .subscription-expired { background-color: var(--pankow-color-danger); color: white;