From f9f5d8c4cbf617550019b1b272993d05e2191685 Mon Sep 17 00:00:00 2001 From: Scarriffle Date: Fri, 27 Mar 2026 09:51:18 +0100 Subject: [PATCH] =?UTF-8?q?Fix:=20langer=20Kalendername=20=C3=BCberdeckt?= =?UTF-8?q?=20Ausblenden-Button=20in=20Sidebar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/css/app.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/css/app.css b/frontend/css/app.css index 4d4c6bf..0d541f8 100644 --- a/frontend/css/app.css +++ b/frontend/css/app.css @@ -405,7 +405,8 @@ a { color: var(--primary); text-decoration: none; } } .cal-item-dot:hover { outline: 2px solid var(--text-2); outline-offset: 1px; } .cal-item input[type=checkbox] { accent-color: var(--primary); width: 14px; height: 14px; } -.cal-item-name { font-size: 13px; flex: 1; color: var(--text-1); cursor: default; } +.cal-item-name { font-size: 13px; flex: 1; min-width: 0; color: var(--text-1); cursor: default; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } +.cal-item-remove { flex-shrink: 0; } .cal-rename-input { font-size: 13px; flex: 1; color: var(--text-1); background: var(--bg-app); border: 1px solid var(--primary);