feat(ui): add vision and reasoning symbols, fix dropdown fonts

Add new Font Awesome symbols for model capability indicators:
- vision symbol (eye icon) for vision-capable VLM models
- reasoning symbol (lightbulb icon) for thinking/reasoning models

Also fix dropdown font styling by adding NotoSans font-family.
This commit is contained in:
CalamitousFelicitousness
2025-12-02 21:43:13 +00:00
parent d3a2f6c7ed
commit 766cb49928
2 changed files with 8 additions and 0 deletions
+6
View File
@@ -289,6 +289,12 @@ input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
.gradio-dropdown .token {
overflow-x: hidden;
padding: var(--spacing-xs) !important;
font-family: 'NotoSans', var(--font);
}
.gradio-dropdown .wrap input,
.gradio-dropdown input {
font-family: 'NotoSans', var(--font);
}
.gradio-html {
+2
View File
@@ -28,6 +28,8 @@ image = '🖌️'
resize = ''
interrogate = ''
bullet = ''
vision = '\uf06e' # Font Awesome eye icon (more minimalistic)
reasoning = '\uf0eb' # Font Awesome lightbulb icon (represents thinking/reasoning)
sort_alpha_asc = '\uf15d'
sort_alpha_dsc = '\uf15e'
sort_size_asc = '\uf160'