From 2a3077fa26a7d2c0df3d0b164785504171736598 Mon Sep 17 00:00:00 2001 From: Jean-Michel Tremblay Date: Fri, 19 Jun 2026 08:54:37 -0400 Subject: [PATCH] Compact recent list to one line per receipt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop the (usually garbage) original filename. Each row is now a single line: amount link · date · category · who, attachments as 📎 links (filename on hover), and a small muted upload time. Co-Authored-By: Claude Opus 4.8 --- internal/web/static/style.css | 8 ++++++-- internal/web/templates/recent.html | 8 ++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/internal/web/static/style.css b/internal/web/static/style.css index 060d4a1..87b4027 100644 --- a/internal/web/static/style.css +++ b/internal/web/static/style.css @@ -86,8 +86,12 @@ table.tally .muted { color: #bbb; } /* Recent lists + tabs + pager. */ p.tabs a.active { font-weight: 700; text-decoration: none; color: #137333; } ul.recent { list-style: none; padding: 0; } -ul.recent li { padding: .5rem 0; border-bottom: 1px solid #eee; } -ul.recent small { color: #555; } +ul.recent li { padding: .35rem 0; border-bottom: 1px solid #eee; font-size: .92rem; } +ul.recent .amt { font-weight: 600; } +ul.recent .meta { color: #333; } +ul.recent .atts { margin-left: .15rem; } +ul.recent .atts a { text-decoration: none; } +ul.recent .when { color: #999; font-size: .8rem; margin-left: .35rem; } p.pager { margin-top: 1rem; } .err { diff --git a/internal/web/templates/recent.html b/internal/web/templates/recent.html index 8749329..e36d472 100644 --- a/internal/web/templates/recent.html +++ b/internal/web/templates/recent.html @@ -15,10 +15,10 @@