fix: nav active states

This commit is contained in:
Cory Dransfeldt 2023-12-12 21:08:15 -08:00
parent 42ffe67ea0
commit 26788bbd9a
No known key found for this signature in database
3 changed files with 11 additions and 12 deletions

View file

@ -1,14 +1,5 @@
{%- capture pageUrl %}/{{ link | downcase }}/{% endcapture -%}
{% if page.url != pageUrl %}
<a class="text-gray-700 hover:text-blue-800 dark:text-white dark:hover:text-blue-200 !no-underline" href="/{{ link | downcase }}">
{% if icon %}
{% tablericon icon link %}
{% else %}
{{ link }}
{% endif %}
</a>
{% endif %}
{% if page.url == pageUrl %}
{% if pageUrl contains page.fileSlug and page.fileSlug %}
<span class="cursor-not-allowed active">
{% if icon %}
{% tablericon icon link %}
@ -16,4 +7,12 @@
{{ link }}
{% endif %}
</span>
{% else %}
<a class="text-gray-700 hover:text-blue-800 dark:text-white dark:hover:text-blue-200 !no-underline" href="/{{ link | downcase }}">
{% if icon %}
{% tablericon icon link %}
{% else %}
{{ link }}
{% endif %}
</a>
{% endif %}

View file

@ -1960,7 +1960,7 @@ html {
.active,
.active svg {
color: #2563eb !important;
color: #2563eb;
}
.header-anchor {

View file

@ -50,7 +50,7 @@ html {
.active,
.active svg {
color: theme(colors.blue.600) !important;
color: theme(colors.blue.600);
}
.header-anchor {