|
10 | 10 | {% include all-products-link %}
|
11 | 11 | <li title="{{product.title}}" class="sidebar-product mb-2">
|
12 | 12 | {% unless page.hidden %}
|
13 |
| - <a href="{{product.href}}" class="pl-4 pr-5 pb-1 f4">{{ product.title }}</a> |
| 13 | + <a href="{{product.href}}" class="pl-4 pr-5 pb-1 f4 color-text-primary">{{ product.title }}</a> |
14 | 14 | {% endunless %}
|
15 | 15 | </li>
|
16 | 16 | <li>
|
|
21 | 21 | <li class="sidebar-category py-1 {% if breadcrumbs.category.href == category[1].href %}active {% if currentPath == fullPathToCategory %}is-current-page {% endif %}{% endif %}{% if category[1].standalone %}standalone-category{% endif %}">
|
22 | 22 | {% if category[1].shortTitle %}{% assign categoryTitle = category[1].shortTitle %}{% else %}{% assign categoryTitle = category[1].title %}{% endif %}
|
23 | 23 | {% if category[1].standalone %}
|
24 |
| - <a href="{{fullPathToCategory}}" class="pl-4 pr-2 py-2 f6 text-uppercase d-block flex-auto mr-3">{{ categoryTitle }}</a> |
| 24 | + <a href="{{fullPathToCategory}}" class="pl-4 pr-2 py-2 f6 text-uppercase d-block flex-auto mr-3 color-text-primary">{{ categoryTitle }}</a> |
25 | 25 | {% else %}
|
26 | 26 | <details class="dropdown-withArrow details details-reset" {% if breadcrumbs.category.href == category[1].href or forloop.index < 4 %}open{% endif %}>
|
27 | 27 | <summary>
|
28 | 28 | <div class="d-flex flex-justify-between">
|
29 |
| - <a href="{{fullPathToCategory}}" class="pl-4 pr-2 py-2 f6 text-uppercase d-block flex-auto mr-3">{{ categoryTitle }}</a> |
| 29 | + <a href="{{fullPathToCategory}}" class="pl-4 pr-2 py-2 f6 text-uppercase d-block flex-auto mr-3 color-text-primary">{{ categoryTitle }}</a> |
30 | 30 | {% if breadcrumbs.category.href == category[1].href or forloop.index < 4 %}
|
31 | 31 | <svg xmlns="http://www.w3.org/2000/svg" class="octicon flex-shrink-0 arrow mr-3" style="margin-top:7px" viewBox="0 0 16 16" width="16" height="16"> <path fill-rule="evenodd" clip-rule="evenodd" d="M12.7803 6.21967C13.0732 6.51256 13.0732 6.98744 12.7803 7.28033L8.53033 11.5303C8.23744 11.8232 7.76256 11.8232 7.46967 11.5303L3.21967 7.28033C2.92678 6.98744 2.92678 6.51256 3.21967 6.21967C3.51256 5.92678 3.98744 5.92678 4.28033 6.21967L8 9.93934L11.7197 6.21967C12.0126 5.92678 12.4874 5.92678 12.7803 6.21967Z"></path></svg>
|
32 | 32 | {% endif %}
|
|
43 | 43 | {% if maptopic[1].shortTitle %}{% assign maptopicTitle = maptopic[1].shortTitle %}{% else %}{% assign maptopicTitle = maptopic[1].title %}{% endif %}
|
44 | 44 |
|
45 | 45 | <li class="sidebar-maptopic {% if breadcrumbs.maptopic.href == maptopic[1].href %}active {% if currentPath == fullPathToMaptopic %}is-current-page{% endif %}{% endif %}">
|
46 |
| - <a href="{{fullPathToMaptopic}}" class="pl-4 pr-5 py-2">{{ maptopicTitle }}</a> |
| 46 | + <a href="{{fullPathToMaptopic}}" class="pl-4 pr-5 py-2 color-text-primary">{{ maptopicTitle }}</a> |
47 | 47 | <ul class="sidebar-articles my-2">
|
48 | 48 | {% for article in maptopic[1].articles %}
|
49 | 49 | {% unless article[1].hidden %}
|
50 | 50 | {% capture fullPathToArticle %}{{article[1].href}}{% endcapture %}
|
51 | 51 | {% if article[1].shortTitle %}{% assign articleTitle = article[1].shortTitle %}{% else %}{% assign articleTitle = article[1].title %}{% endif %}
|
52 | 52 |
|
53 | 53 | <li class="sidebar-article {% if breadcrumbs.article.href == article[1].href %}active {% if currentPath == fullPathToArticle %}is-current-page{% endif %}{% endif %}">
|
54 |
| - <a href="{{fullPathToArticle}}" class="pl-6 pr-5 py-1{% if forloop.last %} pb-2{% endif %}">{{ articleTitle }}</a> |
| 54 | + <a href="{{fullPathToArticle}}" class="pl-6 pr-5 py-1{% if forloop.last %} pb-2{% endif %} color-text-primary">{{ articleTitle }}</a> |
55 | 55 | </li>
|
56 | 56 | {% endunless %}
|
57 | 57 | {% endfor %}
|
|
68 | 68 | {% capture fullPathToArticle %}{{article[1].href}}{% endcapture %}
|
69 | 69 | {% if article[1].shortTitle %}{% assign articleTitle = article[1].shortTitle %}{% else %}{% assign articleTitle = article[1].title %}{% endif %}
|
70 | 70 | <li class="sidebar-article {% if breadcrumbs.article.href == article[1].href %}active {% if currentPath == fullPathToArticle %}is-current-page{% endif %}{% endif %}">
|
71 |
| - <a href="{{fullPathToArticle}}" class="pl-4 pr-5 py-1{% if forloop.last %} pb-2{% endif %}">{{ articleTitle }}</a> |
| 71 | + <a href="{{fullPathToArticle}}" class="pl-4 pr-5 py-1{% if forloop.last %} pb-2{% endif %} color-text-primary">{{ articleTitle }}</a> |
72 | 72 | </li>
|
73 | 73 | {% endunless %}
|
74 | 74 | {% endfor %}
|
|
0 commit comments