From ea01470df4e28d4f572c8040a933aa8cf1543d1b Mon Sep 17 00:00:00 2001 From: Frank Stellmacher <171614930+Psychotoxical@users.noreply.github.com> Date: Fri, 24 Apr 2026 13:15:24 +0200 Subject: [PATCH] style(credits): bullet markers on contributor cards (#287) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plain lines blur together once a card has more than a handful of contributions; a simple accent-colored • in front of each row makes the list scannable without changing the tone. Co-authored-by: Claude Opus 4.7 (1M context) --- src/styles/components.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/styles/components.css b/src/styles/components.css index 9b41458c..fd770af0 100644 --- a/src/styles/components.css +++ b/src/styles/components.css @@ -3247,6 +3247,20 @@ font-size: 12px; color: var(--text-secondary); line-height: 1.7; + list-style: none; +} +.contributor-card-list li { + position: relative; + padding-left: 14px; +} +.contributor-card-list li::before { + content: '•'; + position: absolute; + left: 0; + top: 0; + color: var(--accent); + font-weight: 700; + line-height: 1.7; } /* ── Datenschutz-Hinweis-Banner (z.B. oben im Integrations-Tab) ──────────── */