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,757 @@
1
+ .rooms-directory {
2
+ --rooms-surface: var(--bg-elevated, #1a1a1a);
3
+ --rooms-line: var(--border, rgba(255, 255, 255, 0.08));
4
+ --rooms-muted: var(--text-secondary, #a1a1aa);
5
+ --rooms-quiet: var(--text-tertiary, #71717a);
6
+ --rooms-accent: var(--text, #fafafa);
7
+ --rooms-selected: color-mix(
8
+ in srgb,
9
+ var(--text, #fafafa) 7%,
10
+ var(--bg, #0a0a0a)
11
+ );
12
+ width: 100%;
13
+ min-width: 0;
14
+ color: var(--text, #fafafa);
15
+ font-size: 13px;
16
+ line-height: 1.5;
17
+ }
18
+
19
+ .rooms-directory *,
20
+ .rooms-directory *::before,
21
+ .rooms-directory *::after {
22
+ box-sizing: border-box;
23
+ }
24
+
25
+ .rooms-directory h2,
26
+ .rooms-directory h3,
27
+ .rooms-directory p {
28
+ margin: 0;
29
+ }
30
+
31
+ .rooms-directory button,
32
+ .rooms-directory input {
33
+ font: inherit;
34
+ }
35
+
36
+ .rooms-directory button {
37
+ cursor: pointer;
38
+ }
39
+
40
+ .rooms-directory button:disabled {
41
+ cursor: default;
42
+ opacity: 0.45;
43
+ }
44
+
45
+ .rooms-directory svg {
46
+ width: 18px;
47
+ height: 18px;
48
+ flex-shrink: 0;
49
+ fill: none;
50
+ stroke: currentColor;
51
+ stroke-width: 1.6;
52
+ stroke-linecap: round;
53
+ stroke-linejoin: round;
54
+ }
55
+
56
+ .rooms-directory button:focus-visible,
57
+ .rooms-directory input:focus-visible,
58
+ .rooms-directory summary:focus-visible {
59
+ outline: 2px solid var(--text-secondary, #a1a1aa);
60
+ outline-offset: 4px;
61
+ }
62
+
63
+ .rooms-heading {
64
+ display: flex;
65
+ align-items: center;
66
+ justify-content: space-between;
67
+ gap: 24px;
68
+ margin-bottom: 28px;
69
+ }
70
+
71
+ .rooms-parent {
72
+ display: flex;
73
+ align-items: center;
74
+ gap: 8px;
75
+ font-size: 12px;
76
+ color: var(--rooms-muted);
77
+ overflow-wrap: anywhere;
78
+ }
79
+
80
+ .rooms-parent > span {
81
+ font-size: 18px;
82
+ color: var(--rooms-quiet);
83
+ }
84
+
85
+ .rooms-heading h2 {
86
+ margin-top: 7px;
87
+ font-size: 26px;
88
+ font-weight: 650;
89
+ letter-spacing: -0.9px;
90
+ line-height: 1.2;
91
+ }
92
+
93
+ .rooms-intro {
94
+ margin-top: 10px !important;
95
+ color: var(--rooms-muted);
96
+ max-width: 480px;
97
+ text-wrap: pretty;
98
+ }
99
+
100
+ .rooms-heading-actions {
101
+ display: flex;
102
+ align-items: center;
103
+ gap: 8px;
104
+ flex-shrink: 0;
105
+ }
106
+
107
+ .rooms-button,
108
+ .rooms-icon-button {
109
+ display: inline-flex;
110
+ align-items: center;
111
+ justify-content: center;
112
+ gap: 9px;
113
+ border: 1px solid var(--rooms-line);
114
+ background: transparent;
115
+ color: inherit;
116
+ border-radius: 8px;
117
+ min-height: 36px;
118
+ padding: 7px 13px;
119
+ font-weight: 550 !important;
120
+ transition:
121
+ background 160ms ease-out,
122
+ border-color 160ms ease-out,
123
+ transform 160ms ease-out;
124
+ }
125
+
126
+ .rooms-button-primary {
127
+ color: var(--bg, #0a0a0a);
128
+ background: var(--text, #fafafa);
129
+ border-color: transparent;
130
+ }
131
+
132
+ .rooms-button-primary > span {
133
+ font-size: 18px;
134
+ line-height: 1;
135
+ }
136
+
137
+ .rooms-icon-button {
138
+ padding: 7px;
139
+ min-width: 36px;
140
+ border-color: transparent;
141
+ font-size: 22px !important;
142
+ line-height: 1;
143
+ }
144
+
145
+ @media (hover: hover) {
146
+ .rooms-button:not(:disabled):hover,
147
+ .rooms-icon-button:not(:disabled):hover {
148
+ background: var(--rooms-surface);
149
+ border-color: var(--rooms-line);
150
+ }
151
+ .rooms-button-primary:not(:disabled):hover {
152
+ color: var(--bg, #0a0a0a);
153
+ background: var(--text-secondary, #d4d4d8);
154
+ }
155
+ .rooms-entry-main:hover .rooms-entry-title {
156
+ text-decoration: underline;
157
+ text-underline-offset: 4px;
158
+ text-decoration-color: var(--rooms-quiet);
159
+ }
160
+ .rooms-entry-row:hover {
161
+ background: color-mix(in srgb, var(--rooms-accent) 3%, transparent);
162
+ }
163
+ }
164
+
165
+ .rooms-button:not(:disabled):active,
166
+ .rooms-icon-button:not(:disabled):active {
167
+ transform: scale(0.97);
168
+ }
169
+
170
+ .rooms-composer {
171
+ border: 1px solid var(--rooms-line);
172
+ border-radius: 12px;
173
+ padding: 22px;
174
+ margin-bottom: 26px;
175
+ background: color-mix(in srgb, var(--rooms-accent) 2%, var(--bg, #0a0a0a));
176
+ }
177
+
178
+ .rooms-composer-heading {
179
+ display: flex;
180
+ align-items: flex-start;
181
+ justify-content: space-between;
182
+ gap: 16px;
183
+ }
184
+
185
+ .rooms-composer h3 {
186
+ font-size: 15px;
187
+ font-weight: 600;
188
+ letter-spacing: -0.2px;
189
+ }
190
+
191
+ .rooms-composer-heading p {
192
+ margin-top: 4px;
193
+ color: var(--rooms-muted);
194
+ }
195
+
196
+ .rooms-composer-heading > button {
197
+ margin: -7px -7px 0 0;
198
+ }
199
+
200
+ .rooms-mode {
201
+ display: inline-flex;
202
+ gap: 3px;
203
+ margin: 20px 0;
204
+ padding: 3px;
205
+ border: 1px solid var(--rooms-line);
206
+ border-radius: 8px;
207
+ }
208
+
209
+ .rooms-mode button {
210
+ border: 0;
211
+ border-radius: 5px;
212
+ background: transparent;
213
+ color: var(--rooms-muted);
214
+ padding: 6px 14px;
215
+ }
216
+
217
+ .rooms-mode button[aria-pressed="true"] {
218
+ color: var(--text);
219
+ background: var(--rooms-selected);
220
+ box-shadow: 0 1px 3px #0002;
221
+ }
222
+
223
+ .rooms-topic-form > label {
224
+ display: block;
225
+ font-weight: 550;
226
+ margin-bottom: 8px;
227
+ }
228
+
229
+ .rooms-input-action {
230
+ display: flex;
231
+ gap: 10px;
232
+ }
233
+
234
+ .rooms-input-action input {
235
+ width: 100%;
236
+ min-width: 0;
237
+ min-height: 40px;
238
+ border: 1px solid var(--rooms-line);
239
+ border-radius: 7px;
240
+ background: var(--bg, #0a0a0a);
241
+ color: inherit;
242
+ padding: 9px 12px;
243
+ }
244
+
245
+ .rooms-input-action button {
246
+ flex-shrink: 0;
247
+ }
248
+
249
+ .rooms-hint {
250
+ margin-top: 9px !important;
251
+ color: var(--rooms-muted);
252
+ font-size: 12px;
253
+ }
254
+
255
+ .rooms-task-picker {
256
+ display: grid;
257
+ gap: 12px;
258
+ }
259
+
260
+ .rooms-task-list {
261
+ display: grid;
262
+ max-height: 224px;
263
+ overflow-y: auto;
264
+ overscroll-behavior: contain;
265
+ border: 1px solid var(--rooms-line);
266
+ border-radius: 8px;
267
+ }
268
+
269
+ .rooms-task-list > button {
270
+ display: flex;
271
+ align-items: center;
272
+ gap: 12px;
273
+ padding: 12px;
274
+ border: 0;
275
+ border-bottom: 1px solid var(--rooms-line);
276
+ background: transparent;
277
+ text-align: left;
278
+ color: inherit;
279
+ }
280
+
281
+ .rooms-task-list > button:last-child {
282
+ border-bottom: 0;
283
+ }
284
+
285
+ .rooms-task-list > button[aria-pressed="true"] {
286
+ background: color-mix(in srgb, var(--rooms-accent) 6%, transparent);
287
+ }
288
+
289
+ .rooms-task-list > button > span:nth-child(2) {
290
+ display: grid;
291
+ flex: 1;
292
+ min-width: 0;
293
+ gap: 3px;
294
+ }
295
+
296
+ .rooms-task-list strong {
297
+ font-weight: 550;
298
+ overflow-wrap: anywhere;
299
+ }
300
+
301
+ .rooms-task-list small {
302
+ color: var(--rooms-muted);
303
+ }
304
+
305
+ .rooms-task-radio {
306
+ width: 15px;
307
+ height: 15px;
308
+ border: 1px solid var(--rooms-quiet);
309
+ border-radius: 50%;
310
+ flex-shrink: 0;
311
+ }
312
+
313
+ .rooms-task-list [aria-pressed="true"] .rooms-task-radio {
314
+ border: 4px solid var(--text);
315
+ }
316
+
317
+ .rooms-task-footer {
318
+ display: flex;
319
+ align-items: center;
320
+ justify-content: space-between;
321
+ gap: 16px;
322
+ }
323
+
324
+ .rooms-task-footer p,
325
+ .rooms-task-empty {
326
+ color: var(--rooms-muted);
327
+ font-size: 12px;
328
+ }
329
+
330
+ .rooms-task-footer button {
331
+ flex-shrink: 0;
332
+ }
333
+
334
+ .rooms-toolbar {
335
+ display: flex;
336
+ justify-content: space-between;
337
+ align-items: center;
338
+ gap: 20px;
339
+ border-bottom: 1px solid var(--rooms-line);
340
+ padding-bottom: 14px;
341
+ }
342
+
343
+ .rooms-filters {
344
+ display: flex;
345
+ gap: 5px;
346
+ }
347
+
348
+ .rooms-filters button {
349
+ display: inline-flex;
350
+ align-items: center;
351
+ gap: 9px;
352
+ padding: 7px 12px;
353
+ border: 1px solid transparent;
354
+ border-radius: 7px;
355
+ color: var(--rooms-muted);
356
+ background: transparent;
357
+ font-weight: 550;
358
+ }
359
+
360
+ .rooms-filters button[aria-pressed="true"] {
361
+ color: var(--text);
362
+ background: var(--rooms-selected);
363
+ }
364
+
365
+ .rooms-filters button > span {
366
+ font-variant-numeric: tabular-nums;
367
+ font-size: 11px;
368
+ font-weight: 400;
369
+ color: var(--rooms-muted);
370
+ }
371
+
372
+ .rooms-search {
373
+ display: flex;
374
+ align-items: center;
375
+ gap: 8px;
376
+ min-width: 0;
377
+ width: min(240px, 45%);
378
+ color: var(--rooms-quiet);
379
+ border: 1px solid var(--rooms-line);
380
+ border-radius: 7px;
381
+ padding: 8px 10px;
382
+ }
383
+
384
+ .rooms-search input {
385
+ border: 0;
386
+ outline: 0 !important;
387
+ color: var(--text);
388
+ background: transparent;
389
+ width: 100%;
390
+ min-width: 0;
391
+ }
392
+
393
+ .rooms-search input::placeholder,
394
+ .rooms-input-action input::placeholder {
395
+ color: var(--rooms-quiet);
396
+ }
397
+
398
+ .rooms-search:focus-within {
399
+ outline: 2px solid var(--rooms-muted);
400
+ outline-offset: 2px;
401
+ }
402
+
403
+ .rooms-task-picker .rooms-search {
404
+ width: 100%;
405
+ }
406
+
407
+ .rooms-list-caption {
408
+ display: flex;
409
+ align-items: center;
410
+ justify-content: space-between;
411
+ gap: 14px;
412
+ padding: 15px 0 10px;
413
+ font-size: 11px;
414
+ color: var(--rooms-quiet);
415
+ }
416
+
417
+ .rooms-entry {
418
+ border-bottom: 1px solid var(--rooms-line);
419
+ }
420
+
421
+ .rooms-entry-row {
422
+ display: flex;
423
+ align-items: center;
424
+ gap: 4px;
425
+ border-radius: 8px;
426
+ padding-right: 4px;
427
+ transition: background 140ms ease-out;
428
+ }
429
+
430
+ .rooms-entry-main {
431
+ display: flex;
432
+ align-items: center;
433
+ gap: 15px;
434
+ width: 100%;
435
+ min-width: 0;
436
+ text-align: left;
437
+ border: 0;
438
+ background: transparent;
439
+ color: inherit;
440
+ padding: 18px 8px;
441
+ }
442
+
443
+ .rooms-entry-icon {
444
+ display: grid;
445
+ place-items: center;
446
+ width: 38px;
447
+ height: 38px;
448
+ flex-shrink: 0;
449
+ border: 1px solid var(--rooms-line);
450
+ border-radius: 11px;
451
+ color: var(--rooms-muted);
452
+ background: color-mix(in srgb, var(--rooms-accent) 3%, transparent);
453
+ }
454
+
455
+ .rooms-entry-icon[data-kind="branch"] {
456
+ color: #93b4d0;
457
+ }
458
+
459
+ .rooms-entry-copy {
460
+ display: grid;
461
+ gap: 4px;
462
+ flex: 1;
463
+ min-width: 0;
464
+ }
465
+
466
+ .rooms-entry-title {
467
+ font-size: 14px;
468
+ font-weight: 550;
469
+ letter-spacing: -0.15px;
470
+ overflow-wrap: anywhere;
471
+ }
472
+
473
+ .rooms-entry-description {
474
+ display: -webkit-box;
475
+ -webkit-box-orient: vertical;
476
+ -webkit-line-clamp: 1;
477
+ overflow: hidden;
478
+ color: var(--rooms-muted);
479
+ font-size: 12px;
480
+ line-height: 1.6;
481
+ }
482
+
483
+ .rooms-mobile-kind {
484
+ display: none;
485
+ }
486
+
487
+ .rooms-entry-kind {
488
+ color: var(--rooms-muted);
489
+ font-size: 11px;
490
+ border: 1px solid var(--rooms-line);
491
+ padding: 2px 7px;
492
+ border-radius: 5px;
493
+ white-space: nowrap;
494
+ }
495
+
496
+ .rooms-entry-date {
497
+ width: 86px;
498
+ text-align: right;
499
+ font-size: 11px;
500
+ color: var(--rooms-quiet);
501
+ white-space: nowrap;
502
+ }
503
+
504
+ .rooms-entry-arrow {
505
+ color: var(--rooms-muted);
506
+ font-size: 17px;
507
+ }
508
+
509
+ .rooms-details-toggle {
510
+ flex-shrink: 0;
511
+ }
512
+
513
+ .rooms-entry[data-expanded="true"] {
514
+ padding-bottom: 8px;
515
+ }
516
+
517
+ .rooms-entry-details {
518
+ margin: 0 0 8px 61px;
519
+ padding: 20px;
520
+ border: 1px solid var(--rooms-line);
521
+ border-radius: 10px;
522
+ background: color-mix(in srgb, var(--rooms-accent) 2%, var(--bg, #0a0a0a));
523
+ }
524
+
525
+ .rooms-detail-actions {
526
+ display: flex;
527
+ flex-wrap: wrap;
528
+ align-items: center;
529
+ gap: 8px;
530
+ margin-top: 18px;
531
+ }
532
+
533
+ .rooms-detail-outcome {
534
+ margin: 0 0 18px;
535
+ }
536
+
537
+ .rooms-detail-outcome h3 {
538
+ font-size: 13px;
539
+ font-weight: 600;
540
+ }
541
+
542
+ .rooms-detail-outcome p {
543
+ color: var(--rooms-muted);
544
+ margin-top: 8px;
545
+ white-space: pre-wrap;
546
+ overflow-wrap: anywhere;
547
+ line-height: 1.7;
548
+ }
549
+
550
+ .rooms-detail-meta {
551
+ display: flex;
552
+ flex-wrap: wrap;
553
+ gap: 8px 24px;
554
+ margin-bottom: 15px;
555
+ color: var(--rooms-muted);
556
+ font-size: 12px;
557
+ }
558
+
559
+ .rooms-settings > summary {
560
+ padding: 4px 0;
561
+ cursor: pointer;
562
+ font-weight: 550;
563
+ }
564
+
565
+ .rooms-settings > form,
566
+ .rooms-settings > div {
567
+ padding-top: 18px;
568
+ }
569
+
570
+ .rooms-error {
571
+ color: var(--danger, #fca5a5);
572
+ border: 1px solid color-mix(in srgb, var(--danger, #fca5a5) 25%, transparent);
573
+ background: color-mix(in srgb, var(--danger, #fca5a5) 5%, transparent);
574
+ padding: 10px 12px;
575
+ border-radius: 7px;
576
+ margin: 14px 0 !important;
577
+ }
578
+
579
+ .rooms-empty {
580
+ display: grid;
581
+ justify-items: center;
582
+ text-align: center;
583
+ padding: 55px 24px 60px;
584
+ border-bottom: 1px solid var(--rooms-line);
585
+ }
586
+
587
+ .rooms-empty-mark {
588
+ display: flex;
589
+ align-items: center;
590
+ gap: 7px;
591
+ margin-bottom: 23px;
592
+ }
593
+
594
+ .rooms-empty-mark span {
595
+ width: 26px;
596
+ height: 33px;
597
+ border: 1px solid var(--rooms-line);
598
+ border-radius: 7px;
599
+ background: var(--rooms-surface);
600
+ transform: rotate(-12deg);
601
+ }
602
+
603
+ .rooms-empty-mark span:nth-child(2) {
604
+ height: 40px;
605
+ width: 32px;
606
+ transform: none;
607
+ border-color: var(--rooms-muted);
608
+ }
609
+
610
+ .rooms-empty-mark span:nth-child(3) {
611
+ transform: rotate(12deg);
612
+ }
613
+
614
+ .rooms-empty h3 {
615
+ font-size: 17px;
616
+ font-weight: 550;
617
+ letter-spacing: -0.4px;
618
+ }
619
+
620
+ .rooms-empty p {
621
+ color: var(--rooms-muted);
622
+ max-width: 370px;
623
+ margin: 10px 0 22px;
624
+ text-wrap: pretty;
625
+ }
626
+
627
+ .rooms-explainer {
628
+ margin-top: 22px;
629
+ color: var(--rooms-muted);
630
+ font-size: 12px;
631
+ }
632
+
633
+ .rooms-explainer > summary {
634
+ cursor: pointer;
635
+ width: fit-content;
636
+ }
637
+
638
+ .rooms-explainer > div {
639
+ display: grid;
640
+ gap: 10px;
641
+ max-width: 620px;
642
+ padding: 16px 0 4px;
643
+ }
644
+
645
+ .rooms-explainer strong {
646
+ color: var(--text);
647
+ font-weight: 550;
648
+ }
649
+
650
+ .rooms-reveal-enter-active {
651
+ transition:
652
+ opacity 180ms ease-out,
653
+ transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
654
+ }
655
+
656
+ .rooms-reveal-leave-active {
657
+ transition: opacity 120ms ease-out;
658
+ }
659
+
660
+ .rooms-reveal-enter-from {
661
+ opacity: 0;
662
+ transform: translateY(-5px);
663
+ }
664
+
665
+ .rooms-reveal-leave-to {
666
+ opacity: 0;
667
+ }
668
+
669
+ @media (max-width: 760px) {
670
+ .rooms-entry-date {
671
+ display: none;
672
+ }
673
+ .rooms-entry-main {
674
+ gap: 11px;
675
+ }
676
+ .rooms-heading {
677
+ align-items: flex-start;
678
+ gap: 15px;
679
+ }
680
+ .rooms-heading-actions {
681
+ margin-top: 29px;
682
+ }
683
+ .rooms-heading h2 {
684
+ font-size: 24px;
685
+ }
686
+ .rooms-heading-actions > .rooms-icon-button {
687
+ display: none;
688
+ }
689
+ .rooms-entry-details {
690
+ margin-left: 0;
691
+ }
692
+ }
693
+
694
+ @media (max-width: 480px) {
695
+ .rooms-heading {
696
+ flex-wrap: wrap;
697
+ margin-bottom: 24px;
698
+ }
699
+ .rooms-heading-actions {
700
+ margin-top: 0;
701
+ }
702
+ .rooms-intro {
703
+ font-size: 12px;
704
+ }
705
+ .rooms-toolbar {
706
+ gap: 12px;
707
+ flex-wrap: wrap;
708
+ }
709
+ .rooms-search {
710
+ width: 100%;
711
+ }
712
+ .rooms-entry-kind {
713
+ display: none;
714
+ }
715
+ .rooms-mobile-kind {
716
+ display: inline;
717
+ }
718
+ .rooms-entry-description {
719
+ -webkit-line-clamp: 2;
720
+ }
721
+ .rooms-entry-title {
722
+ font-size: 13px;
723
+ }
724
+ .rooms-entry-icon {
725
+ width: 32px;
726
+ height: 36px;
727
+ border-radius: 9px;
728
+ }
729
+ .rooms-composer {
730
+ padding: 16px;
731
+ }
732
+ .rooms-input-action,
733
+ .rooms-task-footer {
734
+ flex-direction: column;
735
+ align-items: stretch;
736
+ }
737
+ .rooms-entry-details {
738
+ padding: 16px;
739
+ }
740
+ }
741
+
742
+ @media (prefers-reduced-motion: reduce) {
743
+ .rooms-directory *,
744
+ .rooms-directory *::before,
745
+ .rooms-directory *::after {
746
+ transition: none !important;
747
+ animation: none !important;
748
+ }
749
+ .rooms-reveal-enter-from,
750
+ .rooms-directory button:active {
751
+ transform: none !important;
752
+ }
753
+ }
754
+
755
+ .rooms-error > .rooms-button {
756
+ margin-top: 10px;
757
+ }