Compare commits

...

1 Commits

Author SHA1 Message Date
50b6c623d8 fix: Darken green inline links for WCAG contrast (closes #548)
Some checks failed
Architecture Lint / Lint Repository (pull_request) Blocked by required conditions
Validate Config / Python Test Suite (pull_request) Blocked by required conditions
Architecture Lint / Linter Tests (pull_request) Successful in 23s
PR Checklist / pr-checklist (pull_request) Failing after 3m28s
Smoke Test / smoke (pull_request) Failing after 15s
Validate Config / YAML Lint (pull_request) Failing after 9s
Validate Config / JSON Validate (pull_request) Successful in 9s
Validate Config / Python Syntax & Import Check (pull_request) Failing after 1m20s
Validate Config / Shell Script Lint (pull_request) Failing after 41s
Validate Config / Cron Syntax Check (pull_request) Successful in 10s
Validate Config / Deploy Script Dry Run (pull_request) Successful in 8s
Validate Config / Playbook Schema Validation (pull_request) Successful in 23s
2026-04-15 00:53:34 +00:00

View File

@@ -0,0 +1,11 @@
/* a11y-fixes.css — Gitea custom public CSS overrides for WCAG 2.1 AA */
/* V4 (#548): Green inline links — darken + underline for contrast */
.markdown-body a,
.markdown-body a:not(.label):not([class]) {
color: #507020 !important;
text-decoration: underline !important;
}
.markdown-body a:hover,
.markdown-body a:focus {
color: #3a5518 !important;
}