fix: enforce hidden state and default color of alarm bell

This commit is contained in:
Kantine Wrapper
2026-02-24 13:19:38 +01:00
parent d4a8a47ccd
commit 33bb87d7f4
3 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
## v1.4.12 (2026-02-24)
- **Fix**: Das Glocken-Icon sollte nun endgültig versteckt bleiben, wenn keine Benachrichtigungen aktiv sind (CSS-Kollision mit `.hidden` behoben).
## v1.4.11 (2026-02-24)
- **Feature**: Das Versionsmenü prüft nun im Hintergrund direkt beim Öffnen nach neuen Versionen und aktualisiert die Liste automatisch, selbst wenn eine veraltete Liste noch im Cache liegt.

View File

@@ -946,6 +946,8 @@
if (userFlags.size === 0) {
bellBtn.classList.add('hidden');
bellIcon.style.color = 'var(--text-secondary)';
bellIcon.style.textShadow = 'none';
return;
}

View File

@@ -1 +1 @@
v1.4.11
v1.4.12