update search to include video titles

This commit is contained in:
2026-05-25 10:08:32 +02:00
parent fda2ed36bd
commit f2cebddd4d
4 changed files with 218 additions and 33 deletions

View File

@@ -5423,6 +5423,35 @@ input {
white-space: nowrap;
}
/* Section headers inside the suggestion dropdown (e.g. "Tags" / "Titles") */
.tag-suggestion-header {
padding: 5px 12px 3px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: rgba(255, 255, 255, 0.3);
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
user-select: none;
}
/* Icon prefix for title-type suggestion items */
.tag-suggestion-icon {
flex-shrink: 0;
font-size: 12px;
color: rgba(255, 255, 255, 0.4);
margin-right: 8px;
}
.tag-suggestion-item--title .tag-suggestion-name {
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color: var(--white, #e0e0e0);
}
@media (max-width: 555px) {
.tag-suggestions {
position: fixed;