Update static/style.css
Browse files- static/style.css +15 -11
static/style.css
CHANGED
|
@@ -69,6 +69,8 @@ button:hover {
|
|
| 69 |
scrollbar-width: thin;
|
| 70 |
scrollbar-color: #665c54 var(--bg-statusline1);
|
| 71 |
border-radius: 0.5rem;
|
|
|
|
|
|
|
| 72 |
}
|
| 73 |
|
| 74 |
/* Scrollbar WebKit */
|
|
@@ -132,18 +134,16 @@ form#chatForm {
|
|
| 132 |
height: 8px;
|
| 133 |
margin: 0 4px;
|
| 134 |
background-color: var(--aqua);
|
| 135 |
-
|
| 136 |
animation: bounce 1.4s infinite ease-in-out both;
|
| 137 |
}
|
| 138 |
|
| 139 |
.animation-delay-150 {
|
| 140 |
animation-delay: 0.15s;
|
| 141 |
}
|
| 142 |
-
|
| 143 |
.animation-delay-300 {
|
| 144 |
animation-delay: 0.3s;
|
| 145 |
}
|
| 146 |
-
|
| 147 |
.bg-aqua {
|
| 148 |
background-color: var(--aqua);
|
| 149 |
}
|
|
@@ -155,7 +155,6 @@ form#chatForm {
|
|
| 155 |
transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
|
| 156 |
}
|
| 157 |
|
| 158 |
-
/* When collapsed into minimal */
|
| 159 |
#configPanel.minimal {
|
| 160 |
max-height: 120px;
|
| 161 |
padding-top: 0.5rem;
|
|
@@ -163,20 +162,25 @@ form#chatForm {
|
|
| 163 |
opacity: 0.95;
|
| 164 |
}
|
| 165 |
|
| 166 |
-
/* Full expanded config */
|
| 167 |
#configPanel.expanded {
|
| 168 |
max-height: 1000px;
|
| 169 |
}
|
| 170 |
|
| 171 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 172 |
.model-zone {
|
| 173 |
display: flex;
|
| 174 |
flex-direction: column;
|
| 175 |
align-items: center;
|
| 176 |
text-align: center;
|
| 177 |
}
|
| 178 |
-
|
| 179 |
-
/* Hide dropdown and show only label and loader when minimal */
|
| 180 |
-
#configPanel.minimal .model-dropdown {
|
| 181 |
-
display: none;
|
| 182 |
-
}
|
|
|
|
| 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 */
|
|
|
|
| 134 |
height: 8px;
|
| 135 |
margin: 0 4px;
|
| 136 |
background-color: var(--aqua);
|
| 137 |
+
border-radius: 50%;
|
| 138 |
animation: bounce 1.4s infinite ease-in-out both;
|
| 139 |
}
|
| 140 |
|
| 141 |
.animation-delay-150 {
|
| 142 |
animation-delay: 0.15s;
|
| 143 |
}
|
|
|
|
| 144 |
.animation-delay-300 {
|
| 145 |
animation-delay: 0.3s;
|
| 146 |
}
|
|
|
|
| 147 |
.bg-aqua {
|
| 148 |
background-color: var(--aqua);
|
| 149 |
}
|
|
|
|
| 155 |
transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
|
| 156 |
}
|
| 157 |
|
|
|
|
| 158 |
#configPanel.minimal {
|
| 159 |
max-height: 120px;
|
| 160 |
padding-top: 0.5rem;
|
|
|
|
| 162 |
opacity: 0.95;
|
| 163 |
}
|
| 164 |
|
|
|
|
| 165 |
#configPanel.expanded {
|
| 166 |
max-height: 1000px;
|
| 167 |
}
|
| 168 |
|
| 169 |
+
/* Hide/show label vs model name */
|
| 170 |
+
#configPanel.minimal .model-label {
|
| 171 |
+
display: none;
|
| 172 |
+
}
|
| 173 |
+
#configPanel.minimal .model-name {
|
| 174 |
+
display: inline-block;
|
| 175 |
+
}
|
| 176 |
+
#configPanel.expanded .model-name {
|
| 177 |
+
display: none;
|
| 178 |
+
}
|
| 179 |
+
|
| 180 |
+
/* Layout for each model zone */
|
| 181 |
.model-zone {
|
| 182 |
display: flex;
|
| 183 |
flex-direction: column;
|
| 184 |
align-items: center;
|
| 185 |
text-align: center;
|
| 186 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|