ciyidogan commited on
Commit
03ea09d
·
verified ·
1 Parent(s): 76c3424

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-checkbox {
206
- margin-bottom: 8px;
 
207
  margin-top: 4px;
 
208
  }
209
 
210
- .stt-hint {
211
- color: #666;
212
- font-size: 12px;
213
- margin-bottom: 16px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
  }