* Enable dark mode, matching OS setting
* A few more dark mode tweaks
* Revert mountain opacity
* Update mountains on homepage to rgba
* Revert "Update sidebar to use primer backgrounds (#18818)"
This reverts commit 229ce4518f.
* Revert "Revert "Update sidebar to use primer backgrounds (#18818)""
This reverts commit 5845e25c5d5236776fb83acc42a3444b5f44b960.
* Update overrides.scss
* Remove labtocat and waldocat from 500 and 404
* Readd sidebar changes
27 lines
952 B
HTML
27 lines
952 B
HTML
<!-- product > category > maptopic > article -->
|
|
<div class="sidebar d-none d-lg-block color-bg-tertiary">
|
|
|
|
<div class="d-flex flex-items-center p-4 position-sticky top-0 color-bg-tertiary" style="z-index: 3;" id="github-logo" role="banner">
|
|
<a href="/{{ currentLanguage }}" class="color-text-primary" aria-hidden="true" tabindex="-1">
|
|
{% octicon "mark-github" height="32" %}
|
|
</a>
|
|
<a href="/{{ currentLanguage }}" class="h4-mktg color-text-primary no-underline no-wrap pl-2 flex-auto">{% data ui.header.github_docs %}</a>
|
|
</div>
|
|
|
|
<nav>
|
|
{% if error == '404' or page.relativePath == 'index.md' %}
|
|
<ul class="sidebar-products mt-4">
|
|
{% include sidebar-homepage %}
|
|
</ul>
|
|
{% else %}
|
|
<ul class="sidebar-products">
|
|
{% if FEATURE_NEW_SITETREE %}
|
|
{% include sidebar-product %}
|
|
{% else %}
|
|
{% include sidebar-specific-product %}
|
|
{% endif %}
|
|
</ul>
|
|
{% endif %}
|
|
</nav>
|
|
</div>
|