diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-07 20:32:31 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-07 20:32:31 +0800 |
commit | d05cf043d4c6587d45a78ec9a329c4eab974c5bb (patch) | |
tree | 235d03ea656c70c3f4997b400f4d031830a2ecb8 | |
parent | repo/index: Emit warning when path contains newline (diff) | |
download | forge-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.css | 4 |
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; |