Merge commit from fork

This commit is contained in:
Martin Donath
2026-07-17 18:04:03 +02:00
committed by GitHub
parent 901e6335cc
commit 52fb6be8aa
8 changed files with 10 additions and 13 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -49,7 +49,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.484c7ddc.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.ec1eaa64.min.css' | url }}">
{% if config.theme.palette %}
{% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.ab4e12ef.min.css' | url }}">
@@ -250,7 +250,7 @@
</script>
{% endblock %}
{% block scripts %}
<script src="{{ 'assets/javascripts/bundle.79ae519e.min.js' | url }}"></script>
<script src="{{ 'assets/javascripts/bundle.d7400e89.min.js' | url }}"></script>
{% for script in config.extra_javascript %}
{{ script | script_tag }}
{% endfor %}

View File

@@ -113,10 +113,7 @@ export function mountSearchSuggest(
return words
})
)
.subscribe(words => el.innerHTML = words
.join("")
.replace(/\s/g, "&nbsp;")
)
.subscribe(words => el.textContent = words.join(""))
/* Set up search keyboard handlers */
keyboard$

View File

@@ -395,7 +395,7 @@
padding-inline: px2rem(72px) px2rem(44px);
font-size: px2rem(18px);
color: var(--md-default-fg-color--lighter);
white-space: nowrap;
white-space: pre;
opacity: 0;
transition: opacity 50ms;