_toc.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .toc {
  2. position: -webkit-sticky;
  3. position: sticky;
  4. top: $grid-nav-height;
  5. padding: 0.5rem;
  6. margin: 0.5rem;
  7. margin-top: 0;
  8. padding-top: 0.85rem;
  9. height: calc(100vh - $grid-nav-height);
  10. overflow-y: auto;
  11. font-size: 0.85rem;
  12. z-index: z('toc');
  13. @include no-select;
  14. #TableOfContents {
  15. position: relative;
  16. }
  17. &__label {
  18. font-family: $title-font;
  19. font-size: 1rem;
  20. margin-top: 0.65rem;
  21. margin-bottom: 1rem;
  22. padding-bottom: 0.5rem;
  23. @include themify($themes) {
  24. color: themed('toc-label-color');
  25. }
  26. }
  27. @include themify($themes) {
  28. a {
  29. color: themed('toc-color');
  30. position: relative;
  31. @include on-event {
  32. color: themed('link-hover');
  33. }
  34. &.active {
  35. color: themed('active-font-color');
  36. &::before {
  37. background-color: themed('active-font-color');
  38. content: '';
  39. height: 11px;
  40. left: -8px;
  41. margin: 0.25rem 0;
  42. position: absolute;
  43. width: 2px;
  44. &:last-child {
  45. background-color: transparent;
  46. }
  47. }
  48. }
  49. }
  50. }
  51. ul {
  52. li {
  53. li {
  54. margin-left: 0.85rem;
  55. }
  56. }
  57. }
  58. }
  59. .expand__content {
  60. #TableOfContents {
  61. ul {
  62. list-style-type: circle;
  63. }
  64. }
  65. }