From 6600d5e34602b5b7d8ee81a38649e48917d3f785 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 15 Jul 2026 22:38:20 +0200 Subject: [PATCH] fix: Herz-Icon solid red (#EF4444) + CSS liked-state fill MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - SVG fill="none" → fill="#EF4444" (solid red heart) - CSS default: stroke + fill #EF4444 - CSS liked: stroke + fill #fff (white heart on red button) - stroke-width 1.5 → 0.5 für cleaner Look --- app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index 0761868..18080bc 100644 --- a/app.py +++ b/app.py @@ -2821,7 +2821,7 @@ def public_frontend():
{r['views'] or 0} {r['comment_count'] or 0} - + """ is_ausverkauft = r["category"] == "ausverkauft" and r["spiel_titel"] @@ -2954,10 +2954,10 @@ def public_frontend(): /* Like button — subtle outline */ .stat-like-btn { background:none; border:1px solid #E5E7EB; border-radius:999px; padding:0.25rem 0.6rem; font-size:0.72rem; cursor:pointer; color:#9CA3AF; font-family:inherit; transition:all 0.15s; display:flex; align-items:center; gap:0.2rem; -webkit-tap-highlight-color:transparent; min-width:44px; min-height:36px; justify-content:center; } - .stat-like-btn svg, .stat-like-btn svg path { stroke:#D1D5DB !important; } + .stat-like-btn svg, .stat-like-btn svg path { stroke:#EF4444 !important; fill:#EF4444 !important; } .stat-like-btn:hover { border-color:#9CA3AF; color:#6B7280; } .stat-like-btn.liked { background:#EF4444; color:#fff; border-color:#EF4444; } - .stat-like-btn.liked svg, .stat-like-btn.liked svg path { stroke:#fff !important; } + .stat-like-btn.liked svg, .stat-like-btn.liked svg path { stroke:#fff !important; fill:#fff !important; } .stat-like-btn:active { transform:scale(0.96); } /* Filter bar */