A CLI-first git forge.

cli forge git self-hosted

https://gitbay.org

Commit 9ef1f3a945

9ef1f3a945030ed9fe61fd0a34b8b457792056d4

parent: adf461dc5a

Verified · cmc ci/build: success

cmc <hello@cleberg.net> · 2026-08-26T22:30:20Z

web: the updated column header aligns with its values

table.tree tr.cols th outranks table.tree th.age on specificity, so the
right-alignment applied to the cells but not the header.
internal/web/static/style.css +3
@@ -494,6 +494,9 @@ table.tree tr.cols th {
494494 background: var(--bg);
495495 }
496496 table.tree tr.cols:hover th { background: var(--bg); }
497/* right-aligned columns keep their header with their values; this needs to
498 outrank the tr.cols th rule above, which is why it names both */
499table.tree tr.cols th.age, table.tree tr.cols th.size { text-align: right; }
497500 table.tree th.size { text-align: right; }
498501 table.tree td.name { width: 100%; }
499502 table.tree td.name a { color: var(--fg); }