style(css): reformat legal-page transitions to satisfy prettier
All checks were successful
Deploy Feature Branch to Test (haus.test.kies-media.de) / Deploy to Test Environment (push) Successful in 45s
Lint / PHP Syntax Check (push) Successful in 1m1s
PHPUnit / PHP Unit Tests (push) Successful in 36s
Lint / PHP Syntax Check (pull_request) Successful in 29s
Lint / HTML Lint (htmlhint) (push) Successful in 1m38s
Lint / CSS Lint (stylelint) (push) Successful in 1m43s
PHPUnit / PHP Unit Tests (pull_request) Successful in 41s
Lint / CSS Lint (stylelint) (pull_request) Successful in 1m12s
Lint / HTML Lint (htmlhint) (pull_request) Successful in 1m24s

Prettier (running in the CI stylelint step) wants multi-property
transition values to be split across lines. Pure formatting fix —
no semantic change.
This commit is contained in:
hermes
2026-06-14 14:23:24 +00:00
parent 0df9c11bd1
commit f75ad996ae

View File

@@ -1747,7 +1747,9 @@ nav:not(.scrolled) .locale-switcher__trigger:focus-visible {
color: var(--accent); color: var(--accent);
text-decoration: none; text-decoration: none;
border-bottom: 1px solid rgb(139 105 20 / 25%); border-bottom: 1px solid rgb(139 105 20 / 25%);
transition: border-color 0.2s, color 0.2s; transition:
border-color 0.2s,
color 0.2s;
} }
.legal-page a:hover { .legal-page a:hover {
@@ -1771,7 +1773,9 @@ nav:not(.scrolled) .locale-switcher__trigger:focus-visible {
color: var(--accent); color: var(--accent);
border-bottom: 1px solid var(--accent); border-bottom: 1px solid var(--accent);
padding-bottom: 2px; padding-bottom: 2px;
transition: color 0.2s, border-color 0.2s; transition:
color 0.2s,
border-color 0.2s;
} }
.legal-back:hover { .legal-back:hover {