Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix footer display (#24251) #24269

Merged
merged 2 commits into from
Apr 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions templates/base/footer_content.tmpl
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,4 @@
<footer role="group" aria-label="{{.locale.Tr "aria.footer"}}"> <footer role="group" aria-label="{{.locale.Tr "aria.footer"}}">
<div class="ui container">
<div class="ui left" role="contentinfo" aria-label="{{.locale.Tr "aria.footer.software"}}"> <div class="ui left" role="contentinfo" aria-label="{{.locale.Tr "aria.footer.software"}}">
<a target="_blank" rel="noopener noreferrer" href="https://gitea.io">{{.locale.Tr "powered_by" "Gitea"}}</a> <a target="_blank" rel="noopener noreferrer" href="https://gitea.io">{{.locale.Tr "powered_by" "Gitea"}}</a>
{{if (or .ShowFooterVersion .PageIsAdmin)}} {{if (or .ShowFooterVersion .PageIsAdmin)}}
Expand Down Expand Up @@ -32,5 +31,4 @@
{{if .EnableSwagger}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}} {{if .EnableSwagger}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}}
{{template "custom/extra_links_footer" .}} {{template "custom/extra_links_footer" .}}
</div> </div>
</div>
</footer> </footer>
40 changes: 0 additions & 40 deletions web_src/css/base.css
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1821,46 +1821,6 @@ img.ui.avatar,
color: var(--color-warning-text); 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 {
max-height: 500px;
overflow-y: auto;
margin-bottom: 7px;
}

footer .ui.language .svg {
margin-right: 0.15em;
vertical-align: top;
margin-top: calc(2em - 16px);
}

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) { .center:not(.popup) {
text-align: center; text-align: center;
} }
Expand Down
36 changes: 34 additions & 2 deletions web_src/css/home.css
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -43,9 +43,41 @@
color: var(--color-green); 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 > * {
border-left: 1px solid var(--color-secondary-dark-1);
padding-left: 8px;
margin-left: 5px;
}

footer .right.links > *:first-child {
border-left: none;
}

footer .ui.dropdown.language .menu {
height: 500px;
max-height: calc(100vh - 60px);
overflow-y: auto;
margin-bottom: 10px;
}


@media (max-width: 880px) { @media (max-width: 880px) {
footer .ui.container .left, footer .ui.left,
footer .ui.container .right { footer .ui.right {
width: 100%;
display: block; display: block;
text-align: center; text-align: center;
float: none; float: none;
Expand Down