feat: Rewrite search with jquery and use proper dropdown

This commit is contained in:
2025-06-19 14:25:01 +02:00
parent e9b28ea1c1
commit 452113b4bf
4 changed files with 74 additions and 38 deletions

View File

@@ -20,6 +20,22 @@ $grey-dark: #262728;
}
// Search form suggestion dropdown
#location-result-list {
display: inline; //ensures that the dropdown is not restricted in width WTF
}
.result-item {
cursor: pointer;
}
.result-item:hover {
background-color: #b2aaaa;
}
// Toggle switch
.toggle-switch {
display: inline-block;

File diff suppressed because one or more lines are too long