fix: expand dark mode CSS coverage for all page elements
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 9s
Mirror to GitHub / mirror (push) Failing after 5s
Tests / test (push) Successful in 26s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude 2026-03-23 20:27:42 +00:00
parent 29cda763eb
commit 77f939016f

View file

@ -913,7 +913,8 @@ footer a:hover {
} }
/* Dark mode class-based fallback */ /* Dark mode class-based fallback */
.dark { .dark,
.dark body {
background: #0f0f0f !important; background: #0f0f0f !important;
color: #e8eaed !important; color: #e8eaed !important;
} }
@ -921,18 +922,39 @@ footer a:hover {
background: #1a1a1a !important; background: #1a1a1a !important;
border-color: #2e2e2e !important; border-color: #2e2e2e !important;
} }
.dark .search-box, .dark .site-header a,
.dark .site-header .site-name {
color: #e8eaed !important;
}
.dark input[type="text"], .dark input[type="text"],
.dark input[type="search"] { .dark input[type="search"],
.dark textarea {
background: #1a1a1a !important; background: #1a1a1a !important;
border-color: #2e2e2e !important; border-color: #2e2e2e !important;
color: #e8eaed !important; color: #e8eaed !important;
} }
.dark .search-btn,
.dark button {
background: #14b8a6 !important;
color: #0f0f0f !important;
}
.dark .pref-section,
.dark .pref-row,
.dark .engine-toggle,
.dark select {
background: #1a1a1a !important;
border-color: #2e2e2e !important;
color: #e8eaed !important;
}
.dark a {
color: #14b8a6 !important;
}
.dark .result-item, .dark .result-item,
.dark .result-item:hover { .dark .result-item:hover {
background: #1a1a1a !important; background: #1a1a1a !important;
border-color: #2e2e2e !important; border-color: #2e2e2e !important;
} }
.dark a { .dark footer {
color: #14b8a6 !important; background: #0f0f0f !important;
color: #9aa0a6 !important;
} }