Lesereise curator annotation shows a navy left border instead of the mint accent #798
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
On the Journey detail view, the curator annotation under a document card renders with a dark navy left border. The spec (
docs/specs/lesereisen-reader-spec.html, LR-2 impl-ref "Kuratoren-Annotation") specifiesborder-l-2 border-mint.Root cause
frontend/src/lib/geschichte/JourneyItemCard.svelte:61uses the classborder-mint, but nomintcolor utility exists — the token inlayout.cssis--color-brand-mint, so the utility isborder-brand-mint. With an unknown color utility, Tailwind 4 generates nothing and theborder-l-2falls back tocurrentColor, which inherits the navy ink color.Fix
One word:
border-mint→border-brand-mintinJourneyItemCard.svelte.Optionally grep the codebase for other bare
-mint/-navyutilities that miss thebrand-prefix.Acceptance criteria
#a1dcd8) on the Journey detail viewborder-mint/bg-mint/text-mintclasses remain