| OLD | NEW |
| 1 $article-width: 70%; | 1 $article-width: 70%; |
| 2 $toc-width: 20%; | 2 $toc-width: 20%; |
| 3 $site-toc-width: 175px; | 3 $site-toc-width: 175px; |
| 4 | 4 |
| 5 // Site navigation on all pages | 5 // Site navigation on all pages |
| 6 .inline-site-toc { | 6 .inline-site-toc { |
| 7 line-height: 1.3em; | 7 line-height: 1.3em; |
| 8 | 8 |
| 9 a { | 9 a { |
| 10 @include display-flex(); | 10 @include display-flex(); |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 li a:link, | 77 li a:link, |
| 78 li a:visited { | 78 li a:visited { |
| 79 color: $gray-medium; | 79 color: $gray-medium; |
| 80 | 80 |
| 81 &:hover, | 81 &:hover, |
| 82 &:focus { | 82 &:focus { |
| 83 color: $black; | 83 color: $black; |
| 84 } | 84 } |
| 85 } | 85 } |
| 86 | 86 |
| 87 li.selected > a { | 87 li.selected { |
| 88 li { |
| 89 display:block; |
| 90 } |
| 91 > a { |
| 88 font-weight: bold; | 92 font-weight: bold; |
| 89 color: $black; | 93 color: $black; |
| 94 } |
| 90 } | 95 } |
| 91 } | 96 } |
| 92 | 97 |
| 93 .site-related { | 98 .site-related { |
| 94 display: block; | 99 display: block; |
| 95 background-color: $gray-light; | 100 background-color: $gray-light; |
| 96 padding: 0; | 101 padding: 0; |
| 97 width: inherit; | 102 width: inherit; |
| 98 | 103 |
| 99 h3 { | 104 h3 { |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 } | 339 } |
| 335 } | 340 } |
| 336 .related { | 341 .related { |
| 337 margin: $default-padding 0; | 342 margin: $default-padding 0; |
| 338 } | 343 } |
| 339 } | 344 } |
| 340 .hidden { | 345 .hidden { |
| 341 display: none; | 346 display: none; |
| 342 } | 347 } |
| 343 } | 348 } |
| OLD | NEW |