fix(KB-195): fix theme-aware styling for UsageIndicator toggle buttons
- Update UsageIndicator toggle active state to use var(--todo) and var(--bg) - Add hover state styling for active toggle button - Ensure consistent styling with Header view toggle across all themes - Add changeset for patch release
This commit is contained in:
@@ -6983,11 +6983,16 @@ html .column.drag-over * {
|
||||
}
|
||||
|
||||
.usage-view-toggle-btn.active {
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
background: var(--todo);
|
||||
color: var(--bg);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.usage-view-toggle-btn.active:hover {
|
||||
background: var(--todo);
|
||||
color: var(--bg);
|
||||
}
|
||||
|
||||
/* Content area */
|
||||
.usage-content {
|
||||
max-height: 60vh;
|
||||
|
||||
Reference in New Issue
Block a user