From 0d73f0739b3a00000fcb81ad0f7c2652212cece4 Mon Sep 17 00:00:00 2001 From: Charlie Date: Sat, 13 Jun 2026 15:15:06 +0200 Subject: [PATCH] schema-apps: fix CSS unicode escapes in content properties The .cc-qual-list li::before checkmark used \u2713 (JS form) which is invalid in CSS and rendered as literal 'u2713'. Converted to \2713 with trailing space (correct CSS escape form). grep confirms no \u escapes remain in any content: property. Gate passes (325 apps). --- app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.css b/app.css index 9a35fde..6979c30 100644 --- a/app.css +++ b/app.css @@ -5516,7 +5516,7 @@ footer a:hover { color: var(--accent-2); } margin-bottom: .25rem; } .cc-qual-list li::before { - content: "\u2713"; + content: "\2713 "; position: absolute; left: 0; color: #2563eb;