_toc.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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: 1.25rem;
  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. margin-left: 1.25rem;
  23. padding-bottom: 0.5rem;
  24. @include themify($themes) {
  25. color: themed('toc-label-color');
  26. }
  27. }
  28. @include themify($themes) {
  29. a {
  30. color: themed('toc-color');
  31. position: relative;
  32. @include on-event {
  33. color: themed('link-hover');
  34. }
  35. &.active {
  36. color: themed('active-font-color');
  37. &::before {
  38. background-color: themed('active-font-color');
  39. content: '';
  40. height: 11px;
  41. left: -8px;
  42. margin: 0.25rem 0;
  43. position: absolute;
  44. width: 2px;
  45. &:last-child {
  46. background-color: transparent;
  47. }
  48. }
  49. }
  50. }
  51. }
  52. ul {
  53. li {
  54. li {
  55. margin-left: 0.85rem;
  56. }
  57. }
  58. }
  59. }
  60. .expand__content {
  61. #TableOfContents {
  62. ul {
  63. list-style-type: circle;
  64. }
  65. }
  66. }