From 7447b39de71bb2dc6a6565c89b2760a373707d2a Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Sat, 22 Apr 2023 13:58:59 +0800 Subject: [PATCH] Fix footer display (#24251) Fix #24249 Diff with ignoring spaces: https://github.com/go-gitea/gitea/pull/24251/files?diff=split&w=1 Screenshots:
image image
--------- Co-authored-by: silverwind Co-authored-by: Giteabot --- templates/base/footer_content.tmpl | 56 ++++++++++++++---------------- web_src/css/base.css | 40 --------------------- web_src/css/home.css | 32 +++++++++++++++-- 3 files changed, 57 insertions(+), 71 deletions(-) diff --git a/templates/base/footer_content.tmpl b/templates/base/footer_content.tmpl index 245a615735..f282083d65 100644 --- a/templates/base/footer_content.tmpl +++ b/templates/base/footer_content.tmpl @@ -1,35 +1,33 @@ diff --git a/web_src/css/base.css b/web_src/css/base.css index 2079c3749f..7e510346b3 100644 --- a/web_src/css/base.css +++ b/web_src/css/base.css @@ -1805,46 +1805,6 @@ img.ui.avatar, color: var(--color-warning-text); } -footer { - background-color: var(--color-footer); - border-top: 1px solid var(--color-secondary); - width: 100%; - flex-basis: 40px; - color: var(--color-text-light); -} - -footer .container { - padding: 0 0.5rem; - max-width: 100%; -} - -footer .container .links > * { - border-left: 1px solid var(--color-secondary-dark-1); - padding-left: 8px; - margin-left: 5px; -} - -footer .container .links > *:first-child { - border-left: 0; -} - -footer .ui.language .menu { - height: 500px; - max-height: calc(100vh - 60px); - overflow-y: auto; - margin-bottom: 7px; -} - -footer .ui.language .svg { - margin-right: 0.15em; - margin-top: 1px; -} - -footer .ui.left, -footer .ui.right { - line-height: 39px; /* there is a border-top on the footer, so make the line-height 1px less */ -} - .center:not(.popup) { text-align: center; } diff --git a/web_src/css/home.css b/web_src/css/home.css index 5d36da594c..25643cda27 100644 --- a/web_src/css/home.css +++ b/web_src/css/home.css @@ -43,9 +43,37 @@ color: var(--color-green); } +footer { + background-color: var(--color-footer); + border-top: 1px solid var(--color-secondary); + line-height: 39px; + flex-basis: 40px; + color: var(--color-text-light); + padding: 0 20px; +} + +footer .right.links { + min-width: 180px; /* make sure the menu dropdown doesn't overflow horizontally when language name is short */ +} + +footer .right.links > a { + border-left: 1px solid var(--color-secondary-dark-1); + padding-left: 8px; + margin-left: 5px; +} + +footer .ui.dropdown.language .menu { + height: 500px; + max-height: calc(100vh - 60px); + overflow-y: auto; + margin-bottom: 10px; +} + + @media (max-width: 880px) { - footer .ui.container .left, - footer .ui.container .right { + footer .ui.left, + footer .ui.right { + width: 100%; display: block; text-align: center; float: none;