chore(version): bump 03.09.13 → 03.09.14, CSS padding variables, Gitea URLs
Some checks failed
Repo Health / Access control (push) Failing after 2s
Repo Health / Release configuration (push) Has been skipped
Repo Health / Scripts governance (push) Has been skipped
Repo Health / Repository health (push) Has been skipped
Auto-Update SHA Hash / Update SHA-256 Hash in updates.xml (release) Failing after 41s

- Replace hardcoded padding with CSS variables in footer and header
- Bump version to 03.09.14 across all manifest files
- Switch update server and download URLs from GitHub to Gitea

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jonathan Miller
2026-04-14 17:53:44 -05:00
parent 4d96b0c7ac
commit befd138061
5 changed files with 32 additions and 32 deletions

View File

@@ -13979,10 +13979,10 @@ meter {
}
.footer {
padding-top: 1rem;
padding-top: var(--footer-padding-top, 1rem);
color: var(--mainmenu-nav-link-color, #fff);
background-color: var(--nav-bg-color);
padding-bottom: 80px;
padding-bottom: var(--footer-padding-bottom, 80px);
}
.footer .grid-child {
@@ -13994,7 +13994,7 @@ meter {
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
padding: 2.5rem 0.5em;
padding: var(--footer-grid-padding-y, 2.5rem) var(--footer-grid-padding-x, 0.5em);
}
.footer a {
@@ -14240,8 +14240,8 @@ fieldset>* {
.container-header .navbar-brand {
position: relative;
display: inline-block;
padding-top: 0.3125rem;
padding-bottom: 0.3125rem;
padding-top: var(--navbar-brand-padding-y, 0.3125rem);
padding-bottom: var(--navbar-brand-padding-y, 0.3125rem);
font-size: 2rem;
color: var(--nav-text-color, gray);
-webkit-margin-end: auto;