Fixed hiding of tags (9.4.3 regression)

This commit is contained in:
squidfunk 2023-10-10 08:50:43 +02:00
parent 4c192d3ab7
commit 53749f2acc
No known key found for this signature in database
GPG Key ID: 5ED40BC4F9C436DF
4 changed files with 5 additions and 5 deletions

View File

@ -44,7 +44,7 @@
{% endif %} {% endif %}
{% endblock %} {% endblock %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.bd3936ea.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/main.6a10b989.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.356b1318.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/palette.356b1318.min.css' | url }}">

View File

@ -34,8 +34,8 @@
// Scoped in typesetted content to match specificity of regular content // Scoped in typesetted content to match specificity of regular content
.md-typeset { .md-typeset {
// Tag list // Tag list (if not hidden)
.md-tags { .md-tags:not([hidden]) {
display: inline-flex; display: inline-flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: px2em(8px); gap: px2em(8px);