fix: neutral TOC links + poll-based map/chart init (timing fix)
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 12s
Deploy Internet for Kids / Deploy (push) Successful in 5s
Deploy Internet for Kids / Health Check (push) Successful in 1s
Deploy Internet for Kids / Smoke Tests (push) Successful in 2s
Deploy Internet for Kids / IndexNow Ping (push) Successful in 7s
Deploy Internet for Kids / Promote to Latest (push) Successful in 1s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 2s

TOC links now gray (#4b5563) instead of accent color.
Map and charts use polling (100ms retry) to wait for libs
instead of window.load which fires too early.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-04-03 15:14:04 +03:00
parent 8f2132f4ff
commit 9a86cf6383
4 changed files with 19 additions and 6 deletions

View File

@@ -289,10 +289,14 @@ nav a:hover {
}
#TableOfContents a, #sidebar-toc a {
color: var(--ifk-accent);
color: #4b5563;
text-decoration: none;
}
#TableOfContents a:hover, #sidebar-toc a:hover {
color: var(--ifk-text);
}
#TableOfContents a:hover {
text-decoration: underline;
}