Spaces:
Building
Building
Update flare-ui/src/app/components/chat/chat.component.scss
Browse files
flare-ui/src/app/components/chat/chat.component.scss
CHANGED
@@ -202,13 +202,51 @@
|
|
202 |
background: #555;
|
203 |
}
|
204 |
|
205 |
-
.stt-
|
206 |
-
|
|
|
207 |
margin-top: 4px;
|
|
|
208 |
}
|
209 |
|
210 |
-
.stt-
|
211 |
-
|
212 |
-
|
213 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
}
|
|
|
202 |
background: #555;
|
203 |
}
|
204 |
|
205 |
+
.stt-hint {
|
206 |
+
font-size: 12px;
|
207 |
+
color: #666;
|
208 |
margin-top: 4px;
|
209 |
+
font-style: italic;
|
210 |
}
|
211 |
|
212 |
+
.stt-checkbox {
|
213 |
+
margin-top: 16px;
|
214 |
+
|
215 |
+
&[disabled] {
|
216 |
+
opacity: 0.5;
|
217 |
+
}
|
218 |
+
}
|
219 |
+
|
220 |
+
.realtime-button {
|
221 |
+
margin-left: 16px;
|
222 |
+
background-color: #4caf50 !important;
|
223 |
+
|
224 |
+
&:hover {
|
225 |
+
background-color: #45a049 !important;
|
226 |
+
}
|
227 |
+
|
228 |
+
mat-icon {
|
229 |
+
margin-right: 8px;
|
230 |
+
}
|
231 |
+
}
|
232 |
+
|
233 |
+
// Real-time indicator animation
|
234 |
+
@keyframes pulse {
|
235 |
+
0% {
|
236 |
+
transform: scale(1);
|
237 |
+
opacity: 1;
|
238 |
+
}
|
239 |
+
50% {
|
240 |
+
transform: scale(1.1);
|
241 |
+
opacity: 0.7;
|
242 |
+
}
|
243 |
+
100% {
|
244 |
+
transform: scale(1);
|
245 |
+
opacity: 1;
|
246 |
+
}
|
247 |
+
}
|
248 |
+
|
249 |
+
.realtime-indicator {
|
250 |
+
color: #4caf50;
|
251 |
+
animation: pulse 2s infinite;
|
252 |
}
|