docs: bifurcate documentation into user and admin sections (#38196)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Evan Rusackas
2026-02-26 16:29:08 -05:00
committed by GitHub
parent 8a053bbe07
commit 6589ee48f9
171 changed files with 10899 additions and 2866 deletions

View File

@@ -66,16 +66,36 @@ ul.dropdown__menu svg {
text-decoration: none !important;
}
/* Remove the blue box styling for doc links in dropdowns */
/* Style active doc links in dropdowns with primary color instead of blue box */
.navbar__item.dropdown .dropdown__link--active {
background-color: transparent !important;
color: #1c1e21 !important;
color: var(--ifm-color-primary) !important;
font-weight: 600;
}
.navbar__item.dropdown .dropdown__link--active:hover {
background-color: #f5f5f5 !important;
}
/* Active section indicator — full-height underline */
.navbar {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
@media (min-width: 997px) {
.navbar__item.dropdown:has(> .navbar__link) {
display: flex;
height: 100%;
align-items: center;
padding-bottom: 0 !important;
}
}
.navbar__item.dropdown:has(> .navbar__link.active) {
box-shadow: inset 0 -2px 0 var(--ifm-color-primary);
}
/* Dark mode support */
[data-theme='dark'] .navbar__item.dropdown .dropdown__menu {
background-color: #242526;