mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
Fix show-more button text color in light mode
Button elements don't inherit color by default - added appearance reset and font-family inherit to ensure consistent styling. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -457,9 +457,12 @@
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
font-size: 0.9rem;
|
||||
font-family: inherit;
|
||||
color: var(--text-color);
|
||||
cursor: pointer;
|
||||
transition: all 0.15s;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
}
|
||||
|
||||
.show-more-btn:hover {
|
||||
@@ -520,6 +523,11 @@
|
||||
[data-theme="dark"] .show-more-btn {
|
||||
background: #2a2a2a;
|
||||
border-color: #444;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
[data-theme="dark"] .show-more-btn .count {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
[data-theme="dark"] .occurrences-count {
|
||||
|
||||
Reference in New Issue
Block a user