From: Rito Rhymes Date: Mon, 16 Feb 2026 15:53:31 +0000 (+0000) Subject: gitweb: let page header grow on mobile for long wrapped project names X-Git-Tag: v2.54.0-rc0~123^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4e63fd83e5b33f0113cb7e2231d013c515f0a8b;p=thirdparty%2Fgit.git gitweb: let page header grow on mobile for long wrapped project names On mobile, long project names in the page header can wrap to multiple lines, but the fixed 25px header height does not grow with wrapped content. Switch the header from fixed height to min-height so it expands as needed while keeping the same baseline height for single-line titles. Signed-off-by: Rito Rhymes Signed-off-by: Junio C Hamano --- diff --git a/gitweb/static/gitweb.css b/gitweb/static/gitweb.css index 8247646063..e2e6dd96a2 100644 --- a/gitweb/static/gitweb.css +++ b/gitweb/static/gitweb.css @@ -42,7 +42,7 @@ a.list img.avatar { } div.page_header { - height: 25px; + min-height: 25px; padding: 8px; font-size: 150%; font-weight: bold;