feat(web): link Impressum version to Gitea source repo

The version line in the Impressum footer ("Calendarr vNN") is now a
subtle link to the Calendarr Gitea repo (git.scarriffle.com), opening
in a new tab. Styled to stay muted at rest and reveal as a link on
hover. Bump APP_VERSION v87 -> v88.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Scarriffle
2026-07-20 17:01:20 +02:00
parent 37e5507261
commit 4c7cdc362a
3 changed files with 5 additions and 2 deletions

View File

@@ -63,6 +63,9 @@ input, textarea, [contenteditable="true"], .selectable {
-webkit-user-select: text; user-select: text;
}
a { color: var(--primary); text-decoration: none; }
/* Version im Impressum verlinkt aufs Gitea-Repo — dezent, erst beim Hover als Link erkennbar */
.impressum-version-link { color: var(--text-3); text-decoration: none; transition: color .15s ease; }
.impressum-version-link:hover { color: var(--primary); text-decoration: underline; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--scrollbar); border-radius: 3px; }