Skip to content

Commit

Permalink
Fixed hiding of tags (9.4.3 regression)
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Oct 10, 2023
1 parent 4c192d3 commit 53749f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion material/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
{% endif %}
{% endblock %}
{% 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 %}
{% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.356b1318.min.css' | url }}">
Expand Down
4 changes: 2 additions & 2 deletions src/templates/assets/stylesheets/main/components/_tag.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
// Scoped in typesetted content to match specificity of regular content
.md-typeset {

// Tag list
.md-tags {
// Tag list (if not hidden)
.md-tags:not([hidden]) {
display: inline-flex;
flex-wrap: wrap;
gap: px2em(8px);
Expand Down

0 comments on commit 53749f2

Please sign in to comment.