letagents 0.12.22 → 0.12.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,817 @@
1
+ .private-messages {
2
+ display: grid;
3
+ grid-template-columns: 280px minmax(0, 1fr);
4
+ flex: 1;
5
+ min-height: 0;
6
+ height: 100%;
7
+ background: var(--bg);
8
+ color: var(--text);
9
+ font-family: var(--font-sans);
10
+ font-size: 13px;
11
+ line-height: 1.5;
12
+ overflow: hidden;
13
+ }
14
+ .private-messages * {
15
+ box-sizing: border-box;
16
+ }
17
+ .private-messages button,
18
+ .private-messages input,
19
+ .private-messages textarea {
20
+ font: inherit;
21
+ }
22
+ .private-messages button {
23
+ cursor: pointer;
24
+ }
25
+ .private-messages button:disabled {
26
+ cursor: default;
27
+ opacity: 0.45;
28
+ }
29
+ .private-messages button:focus-visible,
30
+ .private-messages summary:focus-visible,
31
+ .private-messages input:focus-visible,
32
+ .private-messages textarea:focus-visible {
33
+ outline: 2px solid var(--blue);
34
+ outline-offset: 3px;
35
+ }
36
+ .private-messages svg {
37
+ width: 18px;
38
+ height: 18px;
39
+ flex-shrink: 0;
40
+ }
41
+ .private-messages h1,
42
+ .private-messages h2,
43
+ .private-messages h3,
44
+ .private-messages p {
45
+ margin: 0;
46
+ }
47
+ .private-messages h1 {
48
+ font-size: 20px;
49
+ letter-spacing: -0.03em;
50
+ font-weight: 600;
51
+ }
52
+ .private-messages h2 {
53
+ font-size: 15px;
54
+ letter-spacing: -0.015em;
55
+ font-weight: 600;
56
+ }
57
+ .private-messages img {
58
+ object-fit: cover;
59
+ width: 100%;
60
+ height: 100%;
61
+ }
62
+ .conversation-list {
63
+ display: flex;
64
+ flex-direction: column;
65
+ min-width: 0;
66
+ min-height: 0;
67
+ border-right: 1px solid var(--border);
68
+ background: var(--bg-subtle);
69
+ padding: 18px 10px 10px;
70
+ }
71
+ .conversation-list-heading {
72
+ display: flex;
73
+ align-items: center;
74
+ justify-content: space-between;
75
+ padding: 0 8px 18px;
76
+ }
77
+ .chat-icon-button {
78
+ display: inline-flex;
79
+ justify-content: center;
80
+ align-items: center;
81
+ width: 32px;
82
+ height: 32px;
83
+ flex-shrink: 0;
84
+ border: 0;
85
+ border-radius: var(--radius-md, 8px);
86
+ background: transparent;
87
+ color: var(--text-secondary);
88
+ transition:
89
+ background-color 120ms ease,
90
+ color 120ms ease;
91
+ }
92
+ .chat-icon-button:active {
93
+ background: var(--accent-active);
94
+ color: var(--text);
95
+ }
96
+ .conversation-search {
97
+ display: flex;
98
+ gap: 8px;
99
+ align-items: center;
100
+ background: var(--bg-card);
101
+ border: 1px solid var(--border);
102
+ border-radius: 8px;
103
+ padding: 8px 10px;
104
+ margin: 0 5px;
105
+ color: var(--text-tertiary);
106
+ }
107
+ .conversation-search svg {
108
+ width: 15px;
109
+ height: 15px;
110
+ }
111
+ .conversation-search input {
112
+ width: 100%;
113
+ min-width: 0;
114
+ background: transparent;
115
+ border: 0;
116
+ color: var(--text);
117
+ outline-offset: 6px;
118
+ }
119
+ .conversation-search input::placeholder {
120
+ color: var(--text-tertiary);
121
+ }
122
+ .conversation-tabs {
123
+ display: flex;
124
+ gap: 4px;
125
+ padding: 16px 4px 12px;
126
+ }
127
+ .conversation-tabs button {
128
+ display: flex;
129
+ gap: 6px;
130
+ align-items: center;
131
+ background: transparent;
132
+ border: 0;
133
+ padding: 5px 9px;
134
+ border-radius: 6px;
135
+ color: var(--text-secondary);
136
+ font-size: 12px;
137
+ }
138
+ .conversation-tabs button[aria-pressed="true"] {
139
+ background: var(--accent-active);
140
+ color: var(--text);
141
+ }
142
+ .conversation-tabs button span {
143
+ font-size: 10px;
144
+ line-height: 1;
145
+ background: var(--bg-elevated);
146
+ padding: 3px 4px;
147
+ border-radius: 4px;
148
+ }
149
+ .conversation-rows {
150
+ overflow: auto;
151
+ min-height: 0;
152
+ flex: 1;
153
+ }
154
+ .conversation-row {
155
+ display: flex;
156
+ align-items: center;
157
+ gap: 10px;
158
+ padding: 12px 10px;
159
+ width: 100%;
160
+ text-align: left;
161
+ color: var(--text);
162
+ background: transparent;
163
+ border: 0;
164
+ border-radius: 8px;
165
+ margin: 2px 0;
166
+ }
167
+ .conversation-row.selected {
168
+ background: var(--accent-active);
169
+ }
170
+ .conversation-avatar {
171
+ width: 36px;
172
+ height: 36px;
173
+ flex-shrink: 0;
174
+ border-radius: 50%;
175
+ overflow: hidden;
176
+ display: flex;
177
+ align-items: center;
178
+ justify-content: center;
179
+ background: var(--bg-elevated);
180
+ border: 1px solid var(--border-strong);
181
+ color: var(--text-secondary);
182
+ font-size: 14px;
183
+ font-weight: 500;
184
+ }
185
+ .conversation-avatar.group {
186
+ border-radius: 12px;
187
+ }
188
+ .conversation-row-content {
189
+ display: flex;
190
+ flex-direction: column;
191
+ gap: 3px;
192
+ flex: 1;
193
+ min-width: 0;
194
+ }
195
+ .conversation-row-title,
196
+ .conversation-row-preview {
197
+ display: flex;
198
+ align-items: center;
199
+ gap: 8px;
200
+ min-width: 0;
201
+ }
202
+ .conversation-row-title strong {
203
+ font-size: 13px;
204
+ font-weight: 550;
205
+ flex: 1;
206
+ white-space: nowrap;
207
+ overflow: hidden;
208
+ text-overflow: ellipsis;
209
+ }
210
+ .conversation-row-title time {
211
+ font-size: 10px;
212
+ color: var(--text-tertiary);
213
+ flex-shrink: 0;
214
+ font-variant-numeric: tabular-nums;
215
+ }
216
+ .conversation-row-preview > span:first-child {
217
+ white-space: nowrap;
218
+ overflow: hidden;
219
+ text-overflow: ellipsis;
220
+ flex: 1;
221
+ color: var(--text-secondary);
222
+ font-size: 12px;
223
+ }
224
+ .conversation-unread {
225
+ font-size: 10px;
226
+ font-weight: 650;
227
+ min-width: 17px;
228
+ padding: 0 4px;
229
+ text-align: center;
230
+ border-radius: 8px;
231
+ background: var(--text);
232
+ color: var(--bg);
233
+ }
234
+ .conversation-list-note,
235
+ .conversation-list-empty {
236
+ color: var(--text-tertiary);
237
+ text-align: center;
238
+ padding: 32px 18px;
239
+ font-size: 12px;
240
+ }
241
+ .conversation-list-empty > svg {
242
+ width: 26px;
243
+ height: 26px;
244
+ margin-bottom: 10px;
245
+ }
246
+ .conversation-list-empty p {
247
+ margin-bottom: 8px;
248
+ }
249
+ .chat-text-button {
250
+ border: 0;
251
+ background: transparent;
252
+ color: var(--text-secondary);
253
+ padding: 5px 0;
254
+ text-align: left;
255
+ text-decoration: underline;
256
+ text-underline-offset: 3px;
257
+ }
258
+ .conversation-connection {
259
+ padding: 12px;
260
+ color: var(--text-secondary);
261
+ font-size: 12px;
262
+ display: flex;
263
+ gap: 10px;
264
+ align-items: center;
265
+ border-top: 1px solid var(--border);
266
+ }
267
+ .conversation-content {
268
+ position: relative;
269
+ display: flex;
270
+ flex-direction: column;
271
+ min-height: 0;
272
+ min-width: 0;
273
+ }
274
+ .conversation-header {
275
+ display: flex;
276
+ align-items: center;
277
+ gap: 12px;
278
+ min-height: 76px;
279
+ padding: 16px 26px;
280
+ border-bottom: 1px solid var(--border);
281
+ flex-shrink: 0;
282
+ }
283
+ .conversation-title-button {
284
+ border: 0;
285
+ background: transparent;
286
+ padding: 0;
287
+ text-align: left;
288
+ color: var(--text);
289
+ flex: 1;
290
+ min-width: 0;
291
+ }
292
+ .conversation-title-button h2 {
293
+ white-space: nowrap;
294
+ overflow: hidden;
295
+ text-overflow: ellipsis;
296
+ }
297
+ .conversation-title-button span {
298
+ display: block;
299
+ font-size: 11px;
300
+ color: var(--text-tertiary);
301
+ margin-top: 2px;
302
+ }
303
+ .conversation-header-actions {
304
+ display: flex;
305
+ align-items: center;
306
+ gap: 6px;
307
+ margin-left: auto;
308
+ }
309
+ .conversation-mobile-back {
310
+ display: none;
311
+ }
312
+ .conversation-menu {
313
+ position: relative;
314
+ }
315
+ .conversation-menu summary {
316
+ list-style: none;
317
+ }
318
+ .conversation-menu summary::-webkit-details-marker {
319
+ display: none;
320
+ }
321
+ .conversation-menu > div {
322
+ position: absolute;
323
+ right: 0;
324
+ top: 38px;
325
+ z-index: 5;
326
+ width: 172px;
327
+ background: var(--bg-elevated);
328
+ border: 1px solid var(--border-strong);
329
+ border-radius: 10px;
330
+ padding: 5px;
331
+ box-shadow: var(--shadow-lg);
332
+ }
333
+ .conversation-menu > div button {
334
+ display: block;
335
+ width: 100%;
336
+ text-align: left;
337
+ color: var(--text);
338
+ background: none;
339
+ border: 0;
340
+ border-radius: 6px;
341
+ padding: 9px 10px;
342
+ font-size: 12px;
343
+ }
344
+ .conversation-timeline {
345
+ flex: 1;
346
+ overflow: auto;
347
+ overscroll-behavior: contain;
348
+ min-height: 0;
349
+ display: flex;
350
+ flex-direction: column;
351
+ gap: 14px;
352
+ padding: 24px max(26px, calc((100% - 760px) / 2));
353
+ scrollbar-gutter: stable;
354
+ }
355
+ .conversation-day {
356
+ align-self: center;
357
+ color: var(--text-tertiary);
358
+ font-size: 10px;
359
+ padding: 8px 0 4px;
360
+ }
361
+ .conversation-message {
362
+ align-self: flex-start;
363
+ max-width: min(84%, 620px);
364
+ min-width: 90px;
365
+ }
366
+ .conversation-message.own {
367
+ align-self: flex-end;
368
+ }
369
+ .conversation-message-meta {
370
+ display: flex;
371
+ align-items: center;
372
+ gap: 8px;
373
+ color: var(--text-tertiary);
374
+ font-size: 10px;
375
+ margin: 0 3px 5px;
376
+ }
377
+ .conversation-message-meta strong {
378
+ color: var(--text-secondary);
379
+ font-weight: 500;
380
+ font-size: 11px;
381
+ }
382
+ .conversation-message-meta time {
383
+ font-variant-numeric: tabular-nums;
384
+ }
385
+ .conversation-message.own .conversation-message-meta {
386
+ justify-content: flex-end;
387
+ }
388
+ .conversation-message > p {
389
+ white-space: pre-wrap;
390
+ overflow-wrap: anywhere;
391
+ background: var(--bg-card);
392
+ border: 1px solid var(--border);
393
+ padding: 11px 15px;
394
+ border-radius: 12px 12px 12px 3px;
395
+ line-height: 1.65;
396
+ }
397
+ .conversation-message.own > p {
398
+ background: var(--bg-elevated);
399
+ border-color: var(--border-strong);
400
+ border-radius: 12px 12px 3px 12px;
401
+ }
402
+ .conversation-message.pending > p {
403
+ opacity: 0.6;
404
+ }
405
+ .conversation-load-more {
406
+ align-self: center;
407
+ font-size: 11px;
408
+ }
409
+ .conversation-timeline-note {
410
+ color: var(--text-tertiary);
411
+ padding: 20px;
412
+ text-align: center;
413
+ }
414
+ .conversation-jump {
415
+ position: absolute;
416
+ bottom: 145px;
417
+ left: 50%;
418
+ transform: translateX(-50%);
419
+ box-shadow: var(--shadow-md);
420
+ display: flex;
421
+ align-items: center;
422
+ gap: 6px;
423
+ }
424
+ .conversation-jump svg {
425
+ transform: rotate(180deg);
426
+ width: 14px;
427
+ height: 14px;
428
+ }
429
+ .conversation-composer-wrap {
430
+ padding: 12px max(26px, calc((100% - 760px) / 2)) 18px;
431
+ flex-shrink: 0;
432
+ }
433
+ .conversation-composer {
434
+ display: flex;
435
+ gap: 12px;
436
+ align-items: flex-end;
437
+ border: 1px solid var(--border-strong);
438
+ border-radius: 12px;
439
+ background: var(--bg-subtle);
440
+ padding: 12px;
441
+ }
442
+ .conversation-composer:focus-within {
443
+ border-color: var(--border-accent);
444
+ }
445
+ .conversation-composer textarea {
446
+ width: 100%;
447
+ min-width: 0;
448
+ min-height: 44px;
449
+ max-height: 180px;
450
+ resize: vertical;
451
+ border: 0;
452
+ background: none;
453
+ color: var(--text);
454
+ padding: 0 2px;
455
+ line-height: 1.6;
456
+ }
457
+ .conversation-composer textarea:focus-visible {
458
+ outline: none;
459
+ }
460
+ .conversation-composer textarea::placeholder {
461
+ color: var(--text-tertiary);
462
+ }
463
+ .chat-send {
464
+ background: var(--text);
465
+ color: var(--bg);
466
+ border: 0;
467
+ border-radius: 8px;
468
+ display: flex;
469
+ align-items: center;
470
+ justify-content: center;
471
+ width: 32px;
472
+ height: 32px;
473
+ flex-shrink: 0;
474
+ transition: transform 100ms ease-out;
475
+ }
476
+ .chat-send:active:not(:disabled) {
477
+ transform: scale(0.96);
478
+ }
479
+ .conversation-composer-hint {
480
+ display: block;
481
+ color: var(--text-tertiary);
482
+ font-size: 10px;
483
+ text-align: right;
484
+ margin-top: 8px;
485
+ }
486
+ .conversation-waiting {
487
+ color: var(--text-secondary);
488
+ font-size: 12px;
489
+ margin-bottom: 10px !important;
490
+ }
491
+ .conversation-error {
492
+ color: var(--red-text, var(--red));
493
+ font-size: 12px;
494
+ padding: 10px 0;
495
+ }
496
+ .chat-primary,
497
+ .chat-secondary {
498
+ border: 1px solid var(--border-strong);
499
+ border-radius: 8px;
500
+ padding: 9px 14px;
501
+ display: inline-flex;
502
+ align-items: center;
503
+ justify-content: center;
504
+ gap: 8px;
505
+ font-weight: 500;
506
+ font-size: 12px;
507
+ white-space: nowrap;
508
+ }
509
+ .chat-primary {
510
+ background: var(--text);
511
+ color: var(--bg);
512
+ }
513
+ .chat-secondary {
514
+ background: var(--bg-elevated);
515
+ color: var(--text);
516
+ }
517
+ .conversation-request {
518
+ display: flex;
519
+ gap: 10px;
520
+ align-items: center;
521
+ padding: 14px 26px;
522
+ border-bottom: 1px solid var(--border);
523
+ background: var(--bg-subtle);
524
+ }
525
+ .conversation-request > div {
526
+ flex: 1;
527
+ }
528
+ .conversation-request strong {
529
+ font-weight: 550;
530
+ font-size: 12px;
531
+ }
532
+ .conversation-request p {
533
+ color: var(--text-secondary);
534
+ font-size: 11px;
535
+ margin-top: 2px;
536
+ }
537
+ .conversation-welcome,
538
+ .conversation-timeline-empty {
539
+ display: flex;
540
+ flex-direction: column;
541
+ align-items: center;
542
+ justify-content: center;
543
+ text-align: center;
544
+ gap: 12px;
545
+ margin: auto;
546
+ padding: 36px;
547
+ max-width: 430px;
548
+ }
549
+ .conversation-welcome h2 {
550
+ font-size: 22px;
551
+ font-weight: 550;
552
+ letter-spacing: -0.03em;
553
+ }
554
+ .conversation-welcome p,
555
+ .conversation-timeline-empty p {
556
+ color: var(--text-secondary);
557
+ font-size: 13px;
558
+ line-height: 1.7;
559
+ }
560
+ .conversation-welcome .chat-primary {
561
+ margin-top: 8px;
562
+ }
563
+ .conversation-empty-mark {
564
+ width: 52px;
565
+ height: 52px;
566
+ display: flex;
567
+ align-items: center;
568
+ justify-content: center;
569
+ background: var(--bg-card);
570
+ border: 1px solid var(--border-strong);
571
+ border-radius: 16px;
572
+ margin-bottom: 6px;
573
+ box-shadow: inset 0 1px 0 var(--border);
574
+ }
575
+ .conversation-empty-mark svg {
576
+ width: 24px;
577
+ height: 24px;
578
+ color: var(--text-secondary);
579
+ }
580
+ .conversation-timeline-empty h3 {
581
+ font-size: 16px;
582
+ font-weight: 550;
583
+ letter-spacing: -0.02em;
584
+ }
585
+ .conversation-compose-people {
586
+ padding: 28px;
587
+ max-width: 740px;
588
+ width: 100%;
589
+ margin: 0 auto;
590
+ }
591
+ .conversation-compose-people > label {
592
+ font-size: 12px;
593
+ color: var(--text-secondary);
594
+ display: block;
595
+ margin-bottom: 8px;
596
+ }
597
+ .conversation-recipient-field {
598
+ display: flex;
599
+ flex-wrap: wrap;
600
+ align-items: center;
601
+ gap: 6px;
602
+ border: 1px solid var(--border-strong);
603
+ border-radius: 10px;
604
+ padding: 8px;
605
+ background: var(--bg-subtle);
606
+ }
607
+ .conversation-recipient-field:focus-within {
608
+ border-color: var(--border-accent);
609
+ }
610
+ .conversation-recipient-field input {
611
+ flex: 1;
612
+ min-width: 170px;
613
+ background: none;
614
+ border: 0;
615
+ color: var(--text);
616
+ padding: 6px;
617
+ }
618
+ .conversation-recipient-field input:focus-visible {
619
+ outline: none;
620
+ }
621
+ .conversation-recipient {
622
+ display: inline-flex;
623
+ gap: 4px;
624
+ align-items: center;
625
+ background: var(--accent-active);
626
+ border-radius: 6px;
627
+ padding: 3px 8px;
628
+ font-size: 12px;
629
+ }
630
+ .conversation-recipient .chat-icon-button {
631
+ width: 20px;
632
+ height: 20px;
633
+ }
634
+ .conversation-recipient svg {
635
+ width: 12px;
636
+ height: 12px;
637
+ }
638
+ .conversation-people-results {
639
+ max-height: 330px;
640
+ overflow: auto;
641
+ margin: 12px 0;
642
+ }
643
+ .conversation-people-results > p {
644
+ padding: 16px;
645
+ color: var(--text-secondary);
646
+ }
647
+ .conversation-person {
648
+ display: flex;
649
+ align-items: center;
650
+ gap: 12px;
651
+ width: 100%;
652
+ border: 0;
653
+ background: none;
654
+ color: var(--text);
655
+ text-align: left;
656
+ padding: 10px;
657
+ border-radius: 8px;
658
+ }
659
+ .conversation-person > span:nth-child(2) {
660
+ flex: 1;
661
+ }
662
+ .conversation-person strong,
663
+ .conversation-member strong {
664
+ display: block;
665
+ font-size: 13px;
666
+ font-weight: 500;
667
+ }
668
+ .conversation-person small,
669
+ .conversation-member small {
670
+ display: block;
671
+ font-size: 11px;
672
+ color: var(--text-tertiary);
673
+ margin-top: 2px;
674
+ }
675
+ .conversation-person > svg {
676
+ color: var(--text-tertiary);
677
+ width: 16px;
678
+ }
679
+ .conversation-compose-hint {
680
+ margin: 20px 0 !important;
681
+ color: var(--text-secondary);
682
+ font-size: 12px;
683
+ line-height: 1.7;
684
+ }
685
+ .conversation-members-dialog {
686
+ background: var(--bg-elevated);
687
+ color: var(--text);
688
+ border: 1px solid var(--border-strong);
689
+ border-radius: 16px;
690
+ padding: 22px;
691
+ max-width: 430px;
692
+ width: calc(100% - 40px);
693
+ max-height: 80vh;
694
+ box-shadow: var(--shadow-lg);
695
+ }
696
+ .conversation-members-dialog::backdrop {
697
+ background: var(--overlay-scrim, rgba(0, 0, 0, 0.6));
698
+ }
699
+ .conversation-members-dialog header {
700
+ display: flex;
701
+ align-items: center;
702
+ justify-content: space-between;
703
+ margin-bottom: 20px;
704
+ gap: 20px;
705
+ }
706
+ .conversation-member {
707
+ display: flex;
708
+ align-items: center;
709
+ gap: 10px;
710
+ padding: 12px 0;
711
+ }
712
+ .conversation-member > span:nth-child(2) {
713
+ flex: 1;
714
+ }
715
+ .conversation-member > .chat-text-button {
716
+ font-size: 11px;
717
+ }
718
+ .conversation-members-dialog[open] {
719
+ animation: conversation-dialog-in 150ms ease-out;
720
+ }
721
+ @keyframes conversation-dialog-in {
722
+ from {
723
+ opacity: 0;
724
+ transform: scale(0.98);
725
+ }
726
+ to {
727
+ opacity: 1;
728
+ transform: scale(1);
729
+ }
730
+ }
731
+ @media (hover: hover) and (pointer: fine) {
732
+ .chat-icon-button:hover,
733
+ .conversation-menu button:hover,
734
+ .conversation-person:hover {
735
+ background: var(--accent-hover);
736
+ color: var(--text);
737
+ }
738
+ .conversation-row:hover:not(.selected) {
739
+ background: var(--accent-dim);
740
+ }
741
+ .chat-text-button:hover {
742
+ color: var(--text);
743
+ }
744
+ }
745
+ @media (max-width: 1000px) {
746
+ .private-messages {
747
+ grid-template-columns: 230px minmax(0, 1fr);
748
+ }
749
+ .conversation-header {
750
+ padding: 14px 18px;
751
+ }
752
+ .conversation-timeline {
753
+ padding: 20px;
754
+ }
755
+ .conversation-composer-wrap {
756
+ padding: 12px 20px 16px;
757
+ }
758
+ }
759
+ @media (max-width: 720px) {
760
+ .private-messages {
761
+ grid-template-columns: minmax(0, 1fr);
762
+ }
763
+ .conversation-list {
764
+ border: 0;
765
+ }
766
+ .conversation-content {
767
+ display: none;
768
+ }
769
+ .private-messages.chat-open .conversation-list {
770
+ display: none;
771
+ }
772
+ .private-messages.chat-open .conversation-content {
773
+ display: flex;
774
+ }
775
+ .conversation-mobile-back {
776
+ display: flex;
777
+ }
778
+ .conversation-composer-hint {
779
+ display: none;
780
+ }
781
+ .conversation-message {
782
+ max-width: 90%;
783
+ }
784
+ .conversation-request {
785
+ padding: 12px;
786
+ flex-wrap: wrap;
787
+ }
788
+ .conversation-request > div {
789
+ flex-basis: 100%;
790
+ }
791
+ .conversation-header {
792
+ min-height: 66px;
793
+ }
794
+ .chat-icon-button {
795
+ width: 40px;
796
+ height: 40px;
797
+ }
798
+ .conversation-person {
799
+ min-height: 52px;
800
+ }
801
+ .conversation-recipient .chat-icon-button {
802
+ width: 28px;
803
+ height: 28px;
804
+ }
805
+ .conversation-compose-people {
806
+ padding: 20px;
807
+ }
808
+ .conversation-composer textarea {
809
+ font-size: 16px;
810
+ }
811
+ }
812
+ @media (prefers-reduced-motion: reduce) {
813
+ .private-messages * {
814
+ animation: none !important;
815
+ transition: none !important;
816
+ }
817
+ }