From 5d987e18243a36b57ac97505710fb9f8271a47fa Mon Sep 17 00:00:00 2001 From: Etienne Delvarre Date: Wed, 3 Jun 2026 13:28:51 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20Vision=20list=20hover=20layout=20shift=20?= =?UTF-8?q?=E2=80=94=20use=20visibility=20instead=20of=20display=20for=20r?= =?UTF-8?q?emove=20button?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 3581e9f..5d2fef7 100644 --- a/public/index.html +++ b/public/index.html @@ -396,8 +396,8 @@ window.dispatchEvent(new Event('tiptap-loaded')); .list-item-desc-preview p:last-child { margin-bottom: 0; } .list-item-text { flex: 1; } - .list-item-remove { display: none; cursor: pointer; color: var(--text-hint); font-size: 14px; margin-left: 8px; } - .list-item:hover .list-item-remove { display: inline; } + .list-item-remove { visibility: hidden; cursor: pointer; color: var(--text-hint); font-size: 14px; margin-left: 8px; flex-shrink: 0; } + .list-item:hover .list-item-remove { visibility: visible; } .list-item-remove:hover { color: #8b3030; } .list-add { padding: 6px 0; font-size: 14px; color: var(--text-hint); cursor: pointer; display: flex; align-items: center; gap: 6px; } .list-add:hover { color: var(--accent); }