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:
@@ -34,13 +34,13 @@
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #181926;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #cad3f5;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #181926;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
@@ -49,7 +49,7 @@
|
||||
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #cad3f5 #181926;
|
||||
scrollbar-color: #cad3f5 transparent;
|
||||
}
|
||||
|
||||
html,
|
||||
|
@@ -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;
|
||||
|
7
static/css/icons/tags/reasoning.svg
Normal file
7
static/css/icons/tags/reasoning.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
After Width: | Height: | Size: 1.2 KiB |
7
static/css/icons/tags/tools.svg
Normal file
7
static/css/icons/tags/tools.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
After Width: | Height: | Size: 583 B |
Reference in New Issue
Block a user