Fixed appearance of linked tags when hovered (9.0.0 regression)

This commit is contained in:
squidfunk 2023-01-02 17:29:58 +01:00
parent fbfb662588
commit 0de33b3d72
4 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@
{% endif %} {% endif %}
{% endblock %} {% endblock %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.b0107b01.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/main.3bd4f189.min.css' | url }}">
{% if config.theme.palette %} {% if config.theme.palette %}
{% set palette = config.theme.palette %} {% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.2505c338.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/palette.2505c338.min.css' | url }}">

View File

@ -96,7 +96,7 @@
} }
// Linked tag on focus/hover // Linked tag on focus/hover
&:is(a:focus, a:hover)::before { &[href]:is(:focus, :hover)::before {
background-color: var(--md-accent-bg-color); background-color: var(--md-accent-bg-color);
} }
} }