Update static/style.css
Browse files- static/style.css +18 -20
static/style.css
CHANGED
@@ -60,7 +60,16 @@ button:hover {
|
|
60 |
}
|
61 |
|
62 |
/* === Custom Dropdown Styles === */
|
|
|
|
|
|
|
|
|
63 |
.options {
|
|
|
|
|
|
|
|
|
|
|
64 |
background-color: var(--bg-statusline1) !important;
|
65 |
color: var(--fg0);
|
66 |
backdrop-filter: none !important;
|
@@ -69,8 +78,6 @@ button:hover {
|
|
69 |
scrollbar-width: thin;
|
70 |
scrollbar-color: #665c54 var(--bg-statusline1);
|
71 |
border-radius: 0.5rem;
|
72 |
-
z-index: 50;
|
73 |
-
position: relative;
|
74 |
}
|
75 |
|
76 |
/* Scrollbar WebKit */
|
@@ -86,37 +93,30 @@ button:hover {
|
|
86 |
border-radius: 4px;
|
87 |
border: 2px solid var(--bg-statusline1);
|
88 |
}
|
89 |
-
|
90 |
-
/* Scrollbar hover override */
|
91 |
.options::-webkit-scrollbar-thumb:hover {
|
92 |
background-color: #7c6f64 !important;
|
93 |
}
|
94 |
-
|
95 |
-
/* Option Hover State */
|
96 |
.options div:hover {
|
97 |
background-color: var(--blue) !important;
|
98 |
color: var(--fg1) !important;
|
99 |
font-weight: 600;
|
100 |
cursor: pointer;
|
101 |
}
|
|
|
|
|
|
|
102 |
|
103 |
/* Footer (Credits) */
|
104 |
footer {
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
}
|
111 |
|
112 |
-
/* Improve spacing under chat form */
|
113 |
form#chatForm {
|
114 |
-
|
115 |
-
}
|
116 |
-
|
117 |
-
/* Improve padding inside the options dropdown */
|
118 |
-
.options div {
|
119 |
-
padding: 0.5rem 0.75rem;
|
120 |
}
|
121 |
|
122 |
/* === Loader Dots Animation === */
|
@@ -166,7 +166,6 @@ form#chatForm {
|
|
166 |
max-height: 1000px;
|
167 |
}
|
168 |
|
169 |
-
/* Hide/show label vs model name */
|
170 |
#configPanel.minimal .model-label {
|
171 |
display: none;
|
172 |
}
|
@@ -177,7 +176,6 @@ form#chatForm {
|
|
177 |
display: none;
|
178 |
}
|
179 |
|
180 |
-
/* Layout for each model zone */
|
181 |
.model-zone {
|
182 |
display: flex;
|
183 |
flex-direction: column;
|
|
|
60 |
}
|
61 |
|
62 |
/* === Custom Dropdown Styles === */
|
63 |
+
.dropdown {
|
64 |
+
position: relative;
|
65 |
+
}
|
66 |
+
|
67 |
.options {
|
68 |
+
position: absolute;
|
69 |
+
top: 100%;
|
70 |
+
left: 0;
|
71 |
+
width: 100%;
|
72 |
+
z-index: 999;
|
73 |
background-color: var(--bg-statusline1) !important;
|
74 |
color: var(--fg0);
|
75 |
backdrop-filter: none !important;
|
|
|
78 |
scrollbar-width: thin;
|
79 |
scrollbar-color: #665c54 var(--bg-statusline1);
|
80 |
border-radius: 0.5rem;
|
|
|
|
|
81 |
}
|
82 |
|
83 |
/* Scrollbar WebKit */
|
|
|
93 |
border-radius: 4px;
|
94 |
border: 2px solid var(--bg-statusline1);
|
95 |
}
|
|
|
|
|
96 |
.options::-webkit-scrollbar-thumb:hover {
|
97 |
background-color: #7c6f64 !important;
|
98 |
}
|
|
|
|
|
99 |
.options div:hover {
|
100 |
background-color: var(--blue) !important;
|
101 |
color: var(--fg1) !important;
|
102 |
font-weight: 600;
|
103 |
cursor: pointer;
|
104 |
}
|
105 |
+
.options div {
|
106 |
+
padding: 0.5rem 0.75rem;
|
107 |
+
}
|
108 |
|
109 |
/* Footer (Credits) */
|
110 |
footer {
|
111 |
+
margin-top: 1rem;
|
112 |
+
padding-top: 1rem;
|
113 |
+
font-size: 0.875rem;
|
114 |
+
color: var(--fg1);
|
115 |
+
opacity: 0.7;
|
116 |
}
|
117 |
|
|
|
118 |
form#chatForm {
|
119 |
+
margin-bottom: 0.5rem;
|
|
|
|
|
|
|
|
|
|
|
120 |
}
|
121 |
|
122 |
/* === Loader Dots Animation === */
|
|
|
166 |
max-height: 1000px;
|
167 |
}
|
168 |
|
|
|
169 |
#configPanel.minimal .model-label {
|
170 |
display: none;
|
171 |
}
|
|
|
176 |
display: none;
|
177 |
}
|
178 |
|
|
|
179 |
.model-zone {
|
180 |
display: flex;
|
181 |
flex-direction: column;
|