From: Rito Rhymes Date: Mon, 16 Feb 2026 15:53:30 +0000 (+0000) Subject: gitweb: fix mobile footer overflow by wrapping text and clearing floats X-Git-Tag: v2.54.0-rc0~123^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=34108d7fa3b91ca52f9f99f646c0f1ba4111d357;p=thirdparty%2Fgit.git gitweb: fix mobile footer overflow by wrapping text and clearing floats On narrow screens, footer text can wrap, but the fixed 22px footer height and floated footer blocks can cause overflow. Switch to min-height and add a clearfix on the footer container so it grows to contain wrapped float content cleanly. Signed-off-by: Rito Rhymes Signed-off-by: Junio C Hamano --- diff --git a/gitweb/static/gitweb.css b/gitweb/static/gitweb.css index 135590b64c..8247646063 100644 --- a/gitweb/static/gitweb.css +++ b/gitweb/static/gitweb.css @@ -73,11 +73,17 @@ div.page_path { } div.page_footer { - height: 22px; + min-height: 22px; padding: 4px 8px; background-color: #d9d8d1; } +div.page_footer::after { + content: ""; + display: table; + clear: both; +} + div.page_footer_text { line-height: 22px; float: left;