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

View File

@@ -113,10 +113,7 @@ export function mountSearchSuggest(
return words
})
)
.subscribe(words => el.innerHTML = words
.join("")
.replace(/\s/g, " ")
)
.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;