UX: follow-up sidebar variable fixes for c398933 (#30676)

This commit is contained in:
Kris 2025-01-09 15:53:29 -05:00 committed by GitHub
parent 427ea5301b
commit d9c992bfdd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 2 deletions

View File

@ -55,7 +55,12 @@
color: var(--d-sidebar-active-color);
}
}
.sidebar-section-link-content-badge,
.prefix-text {
background: var(--d-sidebar-active-prefix-background);
}
.sidebar-section-link-content-badge {
color: var(--d-sidebar-active-color);
}
.sidebar-section-link-suffix.icon.unread svg {
color: var(--d-sidebar-active-suffix-color);
}

View File

@ -49,7 +49,7 @@
--d-sidebar-active-background: var(--d-selected);
--d-sidebar-active-color: var(--d-sidebar-link-color);
--d-sidebar-active-icon-color: var(--d-sidebar-link-color);
--d-sidebar-active-prefix-background: var(--primary-300);
--d-sidebar-active-prefix-background: var(--primary-200);
--d-sidebar-active-suffix-color: var(--tertiary-med-or-tertiary);
}

View File

@ -62,4 +62,7 @@
.sidebar-section-link-content-text {
color: var(--d-sidebar-link-color);
}
.active .sidebar-section-link-content-text {
color: var(--d-sidebar-active-color);
}
}