Documentation enhancement: add direct links for all config vars (#4237)

This commit is contained in:
shamoon
2023-09-22 11:12:47 -07:00
committed by GitHub
parent 7c8b501c40
commit 379b4f8cd3
7 changed files with 163 additions and 142 deletions

View File

@@ -34,3 +34,24 @@
.index-callout {
margin-right: .5rem;
}
/* make code in headers not bold */
h4 code {
font-weight: normal;
}
/* Hide config vars from sidebar, toc and move the border on mobile case their hidden */
.md-nav.md-nav--secondary .md-nav__item .md-nav__link[href*="PAPERLESS_"],
.md-nav.md-nav--secondary .md-nav__item .md-nav__link[href*="USERMAP_"] {
display: none;
}
@media screen and (max-width: 76.1875em) {
.md-nav--primary .md-nav__item {
border-top: none;
}
.md-nav--primary .md-nav__link {
border-top: .05rem solid var(--md-default-fg-color--lightest);
}
}