1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 13:31:36 +03:00
mobile-nixos/doc/_support/styles/toc.less
2019-11-15 22:02:06 -05:00

25 lines
575 B
Plaintext

// Hides part of the TOC not in scope for multi-page output.
// This will be useful only when the global toc JS will not work.
.section,
.chapter {
// Hides sections not in scope
& > .toc ul.toc {
& li:not(.current-section) > ul,
& > li > ul > li:not(.current-section) {
display: none;
}
}
// Shows current page as bold
span.current-page {
font-weight: bold;
}
}
// Hides uselessly duplicated sub-toc.
// Ideally it would not be in the output.
body.with-javascript .chapter > .toc {
display: none;
}