From 77ad7d70a98a0f8621fa5503eb938774e03c0b2a Mon Sep 17 00:00:00 2001 From: cassowary Date: Mon, 27 Jul 2026 15:33:45 -0700 Subject: [PATCH] hide table headers when rearranging cells --- static/gitweb-site.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/gitweb-site.css b/static/gitweb-site.css index 1948016..9fa1a07 100644 --- a/static/gitweb-site.css +++ b/static/gitweb-site.css @@ -63,6 +63,10 @@ td.link { table.shortlog { tr { + &:has(th) { + display: none; + } + display: flex; flex-direction: row; flex-wrap: wrap; @@ -102,6 +106,10 @@ td.link { padding-top: 5px; padding-bottom: 5px; + &:has(th) { + display: none; + } + td:nth-child(1) { /* ".git" name */ font-weight: bold; -- 1.8.3.1