Some checks failed
Architecture Lint / Linter Tests (pull_request) Successful in 14s
Validate Config / JSON Validate (pull_request) Successful in 15s
Validate Config / Python Test Suite (pull_request) Has been skipped
Validate Config / Shell Script Lint (pull_request) Failing after 49s
Smoke Test / smoke (pull_request) Failing after 16s
Validate Config / Python Syntax & Import Check (pull_request) Failing after 48s
Validate Config / YAML Lint (pull_request) Failing after 15s
Validate Config / Cron Syntax Check (pull_request) Successful in 11s
Validate Config / Deploy Script Dry Run (pull_request) Successful in 10s
Validate Config / Playbook Schema Validation (pull_request) Successful in 24s
Architecture Lint / Lint Repository (pull_request) Failing after 21s
PR Checklist / pr-checklist (pull_request) Successful in 2m42s
Add CSS rule to darken all footer text (version, render time, etc.) to #767676, achieving 4.54:1 contrast ratio on white (WCAG AA minimum). Closes #547
24 lines
707 B
CSS
24 lines
707 B
CSS
|
|
/* V3 (#547): Footer text contrast — darken to #767676 for 4.54:1 on white */
|
|
footer, .footer, .site-footer {
|
|
color: #767676 !important;
|
|
}
|
|
footer .text-muted, .footer .text-muted, .site-footer .text-muted,
|
|
footer small, .footer small, .site-footer small,
|
|
footer .muted, .footer .muted, .site-footer .muted {
|
|
color: #767676 !important;
|
|
}
|
|
|
|
|
|
/* 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;
|
|
}
|