fix: nav active states
This commit is contained in:
parent
42ffe67ea0
commit
26788bbd9a
3 changed files with 11 additions and 12 deletions
|
@ -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 %}
|
|
@ -1960,7 +1960,7 @@ html {
|
|||
|
||||
.active,
|
||||
.active svg {
|
||||
color: #2563eb !important;
|
||||
color: #2563eb;
|
||||
}
|
||||
|
||||
.header-anchor {
|
||||
|
|
|
@ -50,7 +50,7 @@ html {
|
|||
|
||||
.active,
|
||||
.active svg {
|
||||
color: theme(colors.blue.600) !important;
|
||||
color: theme(colors.blue.600);
|
||||
}
|
||||
|
||||
.header-anchor {
|
||||
|
|
Reference in a new issue