From d05cf043d4c6587d45a78ec9a329c4eab974c5bb Mon Sep 17 00:00:00 2001
From: Runxi Yu <me@runxiyu.org>
Date: Fri, 07 Mar 2025 20:32:31 +0800
Subject: [PATCH] css: Don't bold table headers unless it's a .title-row

---
 static/style.css | 4 ++++

diff --git a/static/style.css b/static/style.css
index 511f941f2ba2c5e89a77b3b6b9885cf635280519..6d5c9ca48ce1c7961ffba67cfaa5151f0f469027 100644
--- a/static/style.css
+++ b/static/style.css
@@ -140,8 +140,12 @@ }
 th[scope=row] {
 	text-align: left;
 }
+th {
+	font-weight: normal;
+}
 tr.title-row > th, th.title-row, .title-row {
 	background-color: var(--lighter-box-background-color);
+	font-weight: bold;
 }
 td > pre {
 	margin: 0;

-- 
2.48.1