mirror of https://github.com/go-gitea/gitea.git
Backport #24184 by @krzysztofjeziorny A vertical overflow appears in Firefox 112/MacOS 12.6 when the system setting for scrollbars is to "Always" show them. Here, the fixed 100vw container widths are removed, which removes the overflow. It is, however, only simulated in Developer Tools in latest Firefox and Chromium, so please test on a Gitea installation. Co-authored-by: Krzysztof Jeziorny <872730+krzysztofjeziorny@users.noreply.github.com>
This commit is contained in:
parent
dc66ceadac
commit
7d717e22a8
|
@ -1830,9 +1830,8 @@ footer {
|
|||
}
|
||||
|
||||
footer .container {
|
||||
width: 100vw !important;
|
||||
padding: 0 0.5rem;
|
||||
max-width: calc(100vw - 1rem) !important;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
footer .container .links > * {
|
||||
|
@ -2384,7 +2383,7 @@ a.ui.label:hover {
|
|||
}
|
||||
|
||||
.ui.primary.label,
|
||||
.ui.primary.labels .label,
|
||||
.ui.primary.labels .label,
|
||||
.ui.ui.ui.primary.label {
|
||||
background-color: var(--color-primary);
|
||||
border-color: var(--color-primary-dark-2);
|
||||
|
|
|
@ -84,7 +84,6 @@
|
|||
}
|
||||
|
||||
.dashboard .dashboard-navbar {
|
||||
width: 100vw;
|
||||
padding-left: 0.5rem;
|
||||
padding-right: 0.5rem;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue