1
0
mirror of https://github.com/coalaura/whiskr.git synced 2025-09-09 09:19:54 +00:00

tags and caching

This commit is contained in:
Laura
2025-08-10 16:38:02 +02:00
parent 58d4e4b64b
commit dcf7f09108
9 changed files with 133 additions and 16 deletions

View File

@@ -48,6 +48,14 @@
overflow-y: auto;
}
.dropdown .selected,
.dropdown .opt {
display: flex;
justify-content: space-between;
align-items: center;
gap: 5px;
}
.dropdown .opt {
padding: 4px 6px;
cursor: pointer;
@@ -66,6 +74,34 @@
display: none;
}
.dropdown .label {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
max-width: 300px;
}
.dropdown .tags {
display: flex;
gap: 2px;
}
.dropdown .tags .tag {
width: 18px;
height: 18px;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
}
.tags .tag.reasoning {
background-image: url(icons/tags/reasoning.svg)
}
.tags .tag.tools {
background-image: url(icons/tags/tools.svg)
}
.dropdown .search {
background: #2a2e41;
border-top: 2px solid #494d64;