From 396e90458ba736b6d97b23c43f0a00567e3efa9b Mon Sep 17 00:00:00 2001 From: soyalejolopez Date: Wed, 22 Jul 2026 10:54:55 -0500 Subject: [PATCH] Present card upvotes as a display-only stat, not an upvote button Upvotes are backed by GitHub Discussion reactions (giscus on the detail page), so the count on cards is display-only. The up-chevron icon made it look like an inline upvote control, and .compact-votes was missing the muted styling .compact-views has, so the number rendered darker/bolder. Swap the chevron for a muted heart-outline metric icon and share the muted stat styling so upvotes read like the views count. Clicking still opens the detail page where giscus voting lives. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 49043a0..329a4f8 100644 --- a/index.html +++ b/index.html @@ -638,7 +638,7 @@ text-align: right; } .compact-views, .compact-votes { display: none; } - .compact-views { + .compact-views, .compact-votes { align-items: center; gap: 0.25rem; color: var(--text-lighter); @@ -2140,7 +2140,7 @@

${formatCount(stats.views)} ` : ''} ${stats.hasUpvotes ? `
- + ${formatCount(stats.upvotes)}
` : ''}