From 0ef043dbe468cb7f1fe42e8054105791f9e52077 Mon Sep 17 00:00:00 2001 From: Thibaut Date: Wed, 24 Jun 2026 11:58:02 +0100 Subject: [PATCH] asset-validation: add note button to view/edit feedback without changing rating MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ✎ Note button on each tile + in the lightbox (amber when a note exists), plus 'n' shortcut - opens the existing note pre-filled, no rating toggle (which was wiping the note) - editing a note saves in place without auto-advancing to the next image --- projects/asset-validation/index.html | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/projects/asset-validation/index.html b/projects/asset-validation/index.html index 0b296fc..e190ca9 100644 --- a/projects/asset-validation/index.html +++ b/projects/asset-validation/index.html @@ -1103,6 +1103,8 @@ .tile-rate button.active.like { background: var(--success); } .tile-rate button.active.dislike { background: var(--error); } .tile-rate button:hover { background: var(--ink); } + .tile-rate button.note.has-note { background: var(--amber); color: var(--ink); } + .lb-note.has-note { color: var(--amber); border-color: var(--amber); } .tile-pending { aspect-ratio: 1; background: var(--card); @@ -1475,6 +1477,7 @@

+ @@ -2466,6 +2469,7 @@

+ `; } @@ -2510,6 +2514,7 @@