From 52f1f3210d60613a1c14d588cedca1113b4295a1 Mon Sep 17 00:00:00 2001 From: cassowarii <2374677+cassowarii@users.noreply.github.com> Date: Mon, 27 Jul 2026 22:54:09 -0700 Subject: [PATCH] fix layout of object_header --- static/gitweb-site.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/static/gitweb-site.css b/static/gitweb-site.css index c74af49..6fbcfd3 100644 --- a/static/gitweb-site.css +++ b/static/gitweb-site.css @@ -207,6 +207,31 @@ td.link { } } + table.object_header { + width: 100%; + display: flex; + flex-direction: column; + + tr { + display: flex; + column-gap: 5px; + + td { + flex: 0 0 auto; + padding: 0; + + &:first-child { + font-weight: bold; + } + + &.link { + text-align: right; + width: 100%; + } + } + } + } + div.search { display: flex; align-items: center; -- 1.8.3.1