aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-07 20:32:31 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-07 20:32:31 +0800
commitd05cf043d4c6587d45a78ec9a329c4eab974c5bb (patch)
tree235d03ea656c70c3f4997b400f4d031830a2ecb8
parentrepo/index: Emit warning when path contains newline (diff)
downloadforge-d05cf043d4c6587d45a78ec9a329c4eab974c5bb.tar.gz
forge-d05cf043d4c6587d45a78ec9a329c4eab974c5bb.tar.zst
forge-d05cf043d4c6587d45a78ec9a329c4eab974c5bb.zip
css: Don't bold table headers unless it's a .title-row
-rw-r--r--static/style.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
index 511f941..6d5c9ca 100644
--- a/static/style.css
+++ b/static/style.css
@@ -140,8 +140,12 @@ th, thead, tfoot {
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;