@echothink-ui/inbox 0.1.0

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.
Files changed (52) hide show
  1. package/README.md +5 -0
  2. package/dist/components/AgentDraftReviewPanel.d.ts +18 -0
  3. package/dist/components/ApprovalToSendPanel.d.ts +11 -0
  4. package/dist/components/AttachmentList.d.ts +8 -0
  5. package/dist/components/AttachmentPreview.d.ts +7 -0
  6. package/dist/components/EmailAutomationRulePanel.d.ts +8 -0
  7. package/dist/components/InboxShell.d.ts +10 -0
  8. package/dist/components/LabelManager.d.ts +9 -0
  9. package/dist/components/MailboxFolderList.d.ts +8 -0
  10. package/dist/components/MessageComposer.d.ts +13 -0
  11. package/dist/components/MessageFilterBar.d.ts +13 -0
  12. package/dist/components/MessageList.d.ts +8 -0
  13. package/dist/components/MessagePreview.d.ts +9 -0
  14. package/dist/components/MessageSearch.d.ts +11 -0
  15. package/dist/components/MessageThread.d.ts +22 -0
  16. package/dist/components/PriorityInboxView.d.ts +14 -0
  17. package/dist/components/RecipientPicker.d.ts +10 -0
  18. package/dist/components/ThreadSummaryPanel.d.ts +9 -0
  19. package/dist/index.cjs +1699 -0
  20. package/dist/index.cjs.map +1 -0
  21. package/dist/index.css +2155 -0
  22. package/dist/index.css.map +1 -0
  23. package/dist/index.d.ts +21 -0
  24. package/dist/index.js +1645 -0
  25. package/dist/index.js.map +1 -0
  26. package/dist/types.d.ts +75 -0
  27. package/dist/utils.d.ts +5 -0
  28. package/package.json +44 -0
  29. package/src/components/AgentDraftReviewPanel.tsx +128 -0
  30. package/src/components/ApprovalToSendPanel.tsx +118 -0
  31. package/src/components/AttachmentList.tsx +85 -0
  32. package/src/components/AttachmentPreview.tsx +207 -0
  33. package/src/components/EmailAutomationRulePanel.tsx +100 -0
  34. package/src/components/InboxShell.tsx +62 -0
  35. package/src/components/LabelManager.tsx +147 -0
  36. package/src/components/MailboxFolderList.tsx +66 -0
  37. package/src/components/MessageComposer.tsx +160 -0
  38. package/src/components/MessageFilterBar.test.tsx +34 -0
  39. package/src/components/MessageFilterBar.tsx +69 -0
  40. package/src/components/MessageList.tsx +101 -0
  41. package/src/components/MessagePreview.test.tsx +48 -0
  42. package/src/components/MessagePreview.tsx +84 -0
  43. package/src/components/MessageSearch.tsx +96 -0
  44. package/src/components/MessageThread.tsx +173 -0
  45. package/src/components/PriorityInboxView.tsx +74 -0
  46. package/src/components/RecipientPicker.tsx +181 -0
  47. package/src/components/ThreadSummaryPanel.tsx +107 -0
  48. package/src/index.test.tsx +276 -0
  49. package/src/index.tsx +60 -0
  50. package/src/styles.css +2523 -0
  51. package/src/types.ts +85 -0
  52. package/src/utils.ts +33 -0
package/src/styles.css ADDED
@@ -0,0 +1,2523 @@
1
+ @import "@echothink-ui/core/styles.css";
2
+
3
+ .eth-inbox-shell {
4
+ background: var(--eth-color-background);
5
+ container-type: inline-size;
6
+ color: var(--eth-color-text-primary);
7
+ display: grid;
8
+ grid-template-rows: auto minmax(0, 1fr);
9
+ min-block-size: 0;
10
+ }
11
+
12
+ .eth-inbox-shell__header {
13
+ align-items: center;
14
+ background: var(--eth-color-layer-01);
15
+ border-bottom: 1px solid var(--eth-color-border-subtle);
16
+ display: flex;
17
+ gap: var(--eth-space-lg);
18
+ justify-content: space-between;
19
+ padding: var(--eth-space-lg);
20
+ }
21
+
22
+ .eth-inbox-shell__header h2,
23
+ .eth-inbox-shell__header p {
24
+ margin: 0;
25
+ }
26
+
27
+ .eth-inbox-shell__header p {
28
+ color: var(--eth-color-text-secondary);
29
+ margin-block-start: var(--eth-space-xs);
30
+ }
31
+
32
+ .eth-inbox-shell__toolbar {
33
+ align-items: center;
34
+ display: flex;
35
+ flex-wrap: wrap;
36
+ gap: var(--eth-space-sm);
37
+ }
38
+
39
+ .eth-inbox-shell__layout {
40
+ display: grid;
41
+ grid-template-columns: minmax(8rem, 0.6fr) minmax(16rem, 1fr) minmax(24rem, 2.2fr);
42
+ min-block-size: 0;
43
+ }
44
+
45
+ .eth-inbox-shell__layout--has-inspector {
46
+ grid-template-columns:
47
+ minmax(8rem, 0.55fr) minmax(15rem, 0.95fr) minmax(22rem, 2.1fr)
48
+ minmax(13rem, 0.8fr);
49
+ }
50
+
51
+ .eth-inbox-shell__folders,
52
+ .eth-inbox-shell__list,
53
+ .eth-inbox-shell__thread,
54
+ .eth-inbox-shell__inspector {
55
+ min-block-size: 0;
56
+ min-width: 0;
57
+ overflow: auto;
58
+ }
59
+
60
+ .eth-inbox-shell__folders,
61
+ .eth-inbox-shell__list,
62
+ .eth-inbox-shell__thread {
63
+ border-inline-end: 1px solid var(--eth-color-border-subtle);
64
+ }
65
+
66
+ .eth-inbox-shell__thread {
67
+ background: var(--eth-color-background);
68
+ }
69
+
70
+ .eth-inbox-shell__inspector {
71
+ background: var(--eth-color-layer-01);
72
+ padding: var(--eth-space-lg);
73
+ }
74
+
75
+ .eth-inbox-folder-list,
76
+ .eth-inbox-folders {
77
+ background: var(--eth-color-layer-01);
78
+ block-size: 100%;
79
+ color: var(--eth-color-text-primary);
80
+ inline-size: 100%;
81
+ min-inline-size: 0;
82
+ }
83
+
84
+ .eth-inbox-folder-list__list,
85
+ .eth-inbox-folders__list {
86
+ display: grid;
87
+ gap: 0;
88
+ list-style: none;
89
+ margin: 0;
90
+ padding: var(--eth-space-sm) 0;
91
+ }
92
+
93
+ .eth-inbox-folder-list__item,
94
+ .eth-inbox-folders__item {
95
+ align-items: center;
96
+ background: transparent;
97
+ border: 0;
98
+ border-inline-start: 3px solid transparent;
99
+ color: var(--eth-color-text-primary);
100
+ cursor: pointer;
101
+ display: flex;
102
+ font: inherit;
103
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
104
+ gap: var(--eth-space-sm);
105
+ inline-size: 100%;
106
+ justify-content: flex-start;
107
+ line-height: 1.2857;
108
+ min-block-size: var(--eth-space-3xl);
109
+ min-inline-size: 0;
110
+ padding: var(--eth-space-sm) var(--eth-space-md);
111
+ text-align: start;
112
+ transition:
113
+ background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9),
114
+ border-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
115
+ }
116
+
117
+ .eth-inbox-folder-list__item:hover,
118
+ .eth-inbox-folders__item:hover {
119
+ background: var(--eth-color-layer-hover);
120
+ }
121
+
122
+ .eth-inbox-folder-list__item--active,
123
+ .eth-inbox-folders__item--active {
124
+ background: var(--eth-color-layer-selected);
125
+ border-inline-start-color: var(--eth-color-interactive-primary);
126
+ font-weight: 600;
127
+ }
128
+
129
+ .eth-inbox-folder-list__item--active .eth-inbox-folders__icon,
130
+ .eth-inbox-folders__item--active .eth-inbox-folders__icon {
131
+ color: var(--eth-color-text-primary);
132
+ }
133
+
134
+ .eth-inbox-folder-list__item:focus-visible,
135
+ .eth-inbox-folders__item:focus-visible,
136
+ .eth-inbox-message-list__row:focus-visible,
137
+ .eth-inbox-filter-bar__chip:focus-visible,
138
+ .eth-inbox-recipient-picker__suggestions button:focus-visible {
139
+ outline: 2px solid var(--eth-color-focus);
140
+ outline-offset: -2px;
141
+ }
142
+
143
+ .eth-inbox-folders__icon {
144
+ align-items: center;
145
+ block-size: 1rem;
146
+ color: var(--eth-color-text-secondary);
147
+ display: inline-flex;
148
+ flex: 0 0 auto;
149
+ inline-size: 1rem;
150
+ justify-content: center;
151
+ }
152
+
153
+ .eth-inbox-folders__icon svg {
154
+ block-size: 1rem;
155
+ inline-size: 1rem;
156
+ }
157
+
158
+ .eth-inbox-folders__item--smart .eth-inbox-folders__icon {
159
+ color: var(--eth-color-link);
160
+ }
161
+
162
+ .eth-inbox-folders__label {
163
+ flex: 1 1 auto;
164
+ min-inline-size: 0;
165
+ overflow: hidden;
166
+ text-overflow: ellipsis;
167
+ white-space: nowrap;
168
+ }
169
+
170
+ .eth-inbox-folders__count {
171
+ flex: 0 0 auto;
172
+ margin-inline-start: auto;
173
+ }
174
+
175
+ .eth-inbox-message-list {
176
+ background: var(--eth-color-layer-01);
177
+ border: 1px solid var(--eth-color-border-subtle);
178
+ color: var(--eth-color-text-primary);
179
+ container-type: inline-size;
180
+ display: grid;
181
+ gap: 0;
182
+ inline-size: 100%;
183
+ min-inline-size: 0;
184
+ overflow: hidden;
185
+ }
186
+
187
+ .eth-inbox-message-list__row {
188
+ background: var(--eth-color-layer-01);
189
+ border: 0;
190
+ border-bottom: 1px solid var(--eth-color-border-subtle);
191
+ color: var(--eth-color-text-primary);
192
+ cursor: pointer;
193
+ display: grid;
194
+ font: inherit;
195
+ grid-template-columns: 0.25rem minmax(0, 1fr);
196
+ inline-size: 100%;
197
+ min-block-size: 5.5rem;
198
+ padding: 0;
199
+ text-align: start;
200
+ transition:
201
+ background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9),
202
+ color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
203
+ }
204
+
205
+ .eth-inbox-message-list__row:last-of-type {
206
+ border-bottom: 0;
207
+ }
208
+
209
+ .eth-inbox-message-list__row:hover {
210
+ background: var(--eth-color-layer-hover);
211
+ }
212
+
213
+ .eth-inbox-message-list__row[aria-selected="true"] {
214
+ background: var(--eth-color-layer-selected);
215
+ }
216
+
217
+ .eth-inbox-message-list__row[aria-selected="true"]:hover {
218
+ background: var(--eth-color-layer-selected);
219
+ }
220
+
221
+ .eth-inbox-message-list__selection {
222
+ background: transparent;
223
+ block-size: 100%;
224
+ grid-column: 1;
225
+ grid-row: 1;
226
+ }
227
+
228
+ .eth-inbox-message-list__row[aria-selected="true"] .eth-inbox-message-list__selection {
229
+ background: var(--eth-color-interactive-primary);
230
+ }
231
+
232
+ .eth-inbox-message-list__content {
233
+ display: grid;
234
+ gap: var(--eth-space-xs);
235
+ grid-column: 2;
236
+ min-inline-size: 0;
237
+ padding: var(--eth-space-md) var(--eth-space-lg);
238
+ }
239
+
240
+ .eth-inbox-message-list__header {
241
+ align-items: baseline;
242
+ display: flex;
243
+ gap: var(--eth-space-md);
244
+ justify-content: space-between;
245
+ min-inline-size: 0;
246
+ }
247
+
248
+ .eth-inbox-message-list__from-group {
249
+ align-items: center;
250
+ display: inline-flex;
251
+ flex: 1 1 auto;
252
+ gap: var(--eth-space-xs);
253
+ min-inline-size: 0;
254
+ overflow: hidden;
255
+ }
256
+
257
+ .eth-inbox-message-list__unread {
258
+ background: transparent;
259
+ border-radius: 50%;
260
+ block-size: 0.5rem;
261
+ flex: 0 0 0.5rem;
262
+ inline-size: 0.5rem;
263
+ }
264
+
265
+ .eth-inbox-message-list__row--unread .eth-inbox-message-list__unread {
266
+ background: var(--eth-color-interactive-primary);
267
+ }
268
+
269
+ .eth-inbox-message-list__row--unread .eth-inbox-message-list__subject,
270
+ .eth-inbox-message-list__row--unread .eth-inbox-message-list__from {
271
+ font-weight: 600;
272
+ }
273
+
274
+ .eth-inbox-message-list__from,
275
+ .eth-inbox-message-list__subject,
276
+ .eth-inbox-message-list__preview {
277
+ min-width: 0;
278
+ overflow: hidden;
279
+ text-overflow: ellipsis;
280
+ white-space: nowrap;
281
+ }
282
+
283
+ .eth-inbox-message-list__from {
284
+ flex: 1 1 auto;
285
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
286
+ line-height: 1.2857;
287
+ }
288
+
289
+ .eth-inbox-message-list__subject {
290
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
291
+ line-height: 1.2857;
292
+ }
293
+
294
+ .eth-inbox-message-list__preview {
295
+ line-height: 1.2857;
296
+ }
297
+
298
+ .eth-inbox-message-list__preview,
299
+ .eth-inbox-message-list__date {
300
+ color: var(--eth-color-text-secondary);
301
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
302
+ line-height: 1.2857;
303
+ }
304
+
305
+ .eth-inbox-message-list__date {
306
+ flex: 0 0 auto;
307
+ justify-self: end;
308
+ white-space: nowrap;
309
+ }
310
+
311
+ .eth-inbox-message-list__meta {
312
+ align-items: center;
313
+ display: flex;
314
+ flex-wrap: wrap;
315
+ gap: var(--eth-space-xs);
316
+ margin-block-start: var(--eth-space-2xs);
317
+ min-inline-size: 0;
318
+ }
319
+
320
+ .eth-inbox-message-list__empty {
321
+ align-items: center;
322
+ color: var(--eth-color-text-secondary);
323
+ display: flex;
324
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
325
+ justify-content: center;
326
+ line-height: 1.2857;
327
+ min-block-size: 8rem;
328
+ padding: var(--eth-space-xl);
329
+ text-align: center;
330
+ }
331
+
332
+ @container (inline-size <= 30rem) {
333
+ .eth-inbox-message-list__content {
334
+ padding-inline: var(--eth-space-md);
335
+ }
336
+
337
+ .eth-inbox-message-list__header {
338
+ align-items: flex-start;
339
+ display: grid;
340
+ gap: var(--eth-space-2xs);
341
+ }
342
+
343
+ .eth-inbox-message-list__date {
344
+ justify-self: start;
345
+ }
346
+ }
347
+
348
+ .eth-inbox-message-thread,
349
+ .eth-inbox-thread {
350
+ max-inline-size: 56rem;
351
+ }
352
+
353
+ .eth-inbox-message-preview {
354
+ background: var(--eth-color-layer-01);
355
+ border: 1px solid var(--eth-color-border-subtle);
356
+ border-radius: 0;
357
+ display: grid;
358
+ gap: var(--eth-space-lg);
359
+ inline-size: min(100%, 52rem);
360
+ max-inline-size: 100%;
361
+ min-inline-size: 0;
362
+ padding: var(--eth-space-lg);
363
+ }
364
+
365
+ .eth-inbox-message-preview__header,
366
+ .eth-inbox-thread__header,
367
+ .eth-inbox-attachment-preview__header {
368
+ align-items: flex-start;
369
+ display: flex;
370
+ gap: var(--eth-space-md);
371
+ justify-content: space-between;
372
+ }
373
+
374
+ .eth-inbox-message-preview__heading,
375
+ .eth-inbox-thread__heading {
376
+ display: grid;
377
+ min-inline-size: 0;
378
+ }
379
+
380
+ .eth-inbox-message-preview__heading {
381
+ gap: var(--eth-space-sm);
382
+ }
383
+
384
+ .eth-inbox-thread__heading {
385
+ gap: var(--eth-space-xs);
386
+ }
387
+
388
+ .eth-inbox-message-preview__header h3,
389
+ .eth-inbox-thread__header h2 {
390
+ font-size: calc(1.25rem * var(--eth-text-scale, 1));
391
+ font-weight: 600;
392
+ line-height: 1.4;
393
+ margin: 0;
394
+ overflow-wrap: anywhere;
395
+ }
396
+
397
+ .eth-inbox-message-preview__header time,
398
+ .eth-inbox-attachment-preview__summary span,
399
+ .eth-inbox-thread__updated {
400
+ color: var(--eth-color-text-secondary);
401
+ }
402
+
403
+ .eth-inbox-message-preview__header time,
404
+ .eth-inbox-thread__updated {
405
+ flex: 0 0 auto;
406
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
407
+ line-height: 1.2857;
408
+ white-space: nowrap;
409
+ }
410
+
411
+ .eth-inbox-message-preview__header time {
412
+ padding-block-start: var(--eth-space-2xs);
413
+ }
414
+
415
+ .eth-inbox-message-preview__recipients {
416
+ align-items: center;
417
+ color: var(--eth-color-text-secondary);
418
+ display: flex;
419
+ flex-wrap: wrap;
420
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
421
+ gap: var(--eth-space-xs) var(--eth-space-lg);
422
+ line-height: 1.2857;
423
+ margin: 0;
424
+ min-inline-size: 0;
425
+ }
426
+
427
+ .eth-inbox-message-preview__recipients div {
428
+ display: flex;
429
+ gap: var(--eth-space-xs);
430
+ min-inline-size: 0;
431
+ }
432
+
433
+ .eth-inbox-message-preview__recipients dt {
434
+ color: var(--eth-color-text-secondary);
435
+ font-weight: 600;
436
+ }
437
+
438
+ .eth-inbox-message-preview__recipients dd {
439
+ color: var(--eth-color-text-primary);
440
+ margin: 0;
441
+ min-inline-size: 0;
442
+ overflow-wrap: anywhere;
443
+ }
444
+
445
+ .eth-inbox-message-preview__body,
446
+ .eth-inbox-thread {
447
+ line-height: 1.5;
448
+ }
449
+
450
+ .eth-inbox-message-preview__body {
451
+ color: var(--eth-color-text-primary);
452
+ font-size: calc(1rem * var(--eth-text-scale, 1));
453
+ line-height: 1.5;
454
+ }
455
+
456
+ .eth-inbox-message-preview__body p {
457
+ margin: 0;
458
+ max-inline-size: 72ch;
459
+ overflow-wrap: anywhere;
460
+ white-space: pre-wrap;
461
+ }
462
+
463
+ .eth-inbox-message-preview__attachments {
464
+ display: grid;
465
+ gap: var(--eth-space-sm);
466
+ min-inline-size: 0;
467
+ }
468
+
469
+ .eth-inbox-message-preview__attachments h4 {
470
+ color: var(--eth-color-text-secondary);
471
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
472
+ font-weight: 600;
473
+ line-height: 1.3333;
474
+ margin: 0;
475
+ text-transform: uppercase;
476
+ }
477
+
478
+ .eth-inbox-message-preview__attachments .eth-inbox-attachments {
479
+ inline-size: 100%;
480
+ }
481
+
482
+ .eth-inbox-thread {
483
+ background: var(--eth-color-layer-01);
484
+ border: 1px solid var(--eth-color-border-subtle);
485
+ display: grid;
486
+ gap: 0;
487
+ inline-size: min(100%, 56rem);
488
+ margin-inline: auto;
489
+ padding: 0;
490
+ }
491
+
492
+ .eth-inbox-thread__header {
493
+ background: var(--eth-color-layer-02);
494
+ border-block-end: 1px solid var(--eth-color-border-subtle);
495
+ padding: var(--eth-space-lg);
496
+ }
497
+
498
+ .eth-inbox-thread__eyebrow,
499
+ .eth-inbox-thread__summary-label {
500
+ color: var(--eth-color-text-secondary);
501
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
502
+ font-weight: 600;
503
+ line-height: 1.3333;
504
+ }
505
+
506
+ .eth-inbox-thread__meta,
507
+ .eth-inbox-thread__actions {
508
+ align-items: center;
509
+ display: flex;
510
+ flex-wrap: wrap;
511
+ gap: var(--eth-space-sm);
512
+ }
513
+
514
+ .eth-inbox-thread__meta {
515
+ list-style: none;
516
+ margin: 0;
517
+ padding: 0;
518
+ }
519
+
520
+ .eth-inbox-thread__meta li {
521
+ align-items: center;
522
+ display: inline-flex;
523
+ min-inline-size: 0;
524
+ }
525
+
526
+ .eth-inbox-thread__actions {
527
+ justify-content: flex-end;
528
+ margin-inline-start: auto;
529
+ }
530
+
531
+ .eth-inbox-thread__summary {
532
+ background: var(--eth-color-layer-01);
533
+ border-block-end: 1px solid var(--eth-color-border-subtle);
534
+ display: grid;
535
+ gap: var(--eth-space-sm);
536
+ padding: var(--eth-space-md) var(--eth-space-lg);
537
+ }
538
+
539
+ .eth-inbox-thread__summary-body {
540
+ color: var(--eth-color-text-primary);
541
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
542
+ line-height: 1.2857;
543
+ }
544
+
545
+ .eth-inbox-thread__summary-body > :first-child {
546
+ margin-block-start: 0;
547
+ }
548
+
549
+ .eth-inbox-thread__summary-body > :last-child {
550
+ margin-block-end: 0;
551
+ }
552
+
553
+ .eth-inbox-thread__empty {
554
+ background: var(--eth-color-layer-01);
555
+ color: var(--eth-color-text-secondary);
556
+ display: grid;
557
+ gap: var(--eth-space-xs);
558
+ padding: var(--eth-space-2xl);
559
+ }
560
+
561
+ .eth-inbox-thread__empty strong {
562
+ color: var(--eth-color-text-primary);
563
+ }
564
+
565
+ .eth-inbox-thread__messages,
566
+ .eth-inbox-thread__older {
567
+ display: grid;
568
+ gap: 0;
569
+ }
570
+
571
+ .eth-inbox-thread__older {
572
+ border-block-end: 1px solid var(--eth-color-border-subtle);
573
+ }
574
+
575
+ .eth-inbox-thread__older summary {
576
+ align-items: center;
577
+ background: var(--eth-color-layer-01);
578
+ color: var(--eth-color-text-secondary);
579
+ cursor: pointer;
580
+ display: flex;
581
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
582
+ font-weight: 600;
583
+ line-height: 1.2857;
584
+ min-block-size: var(--eth-space-3xl);
585
+ padding: var(--eth-space-sm) var(--eth-space-lg);
586
+ }
587
+
588
+ .eth-inbox-thread__older summary:hover {
589
+ background: var(--eth-color-layer-hover);
590
+ color: var(--eth-color-text-primary);
591
+ }
592
+
593
+ .eth-inbox-thread__older summary:focus-visible {
594
+ outline: 2px solid var(--eth-color-focus);
595
+ outline-offset: -2px;
596
+ }
597
+
598
+ .eth-inbox-thread__messages .eth-inbox-message-preview,
599
+ .eth-inbox-thread__older .eth-inbox-message-preview {
600
+ border: 0;
601
+ border-block-end: 1px solid var(--eth-color-border-subtle);
602
+ inline-size: 100%;
603
+ max-inline-size: none;
604
+ padding: var(--eth-space-lg);
605
+ }
606
+
607
+ .eth-inbox-thread__messages .eth-inbox-message-preview:last-child,
608
+ .eth-inbox-thread__older .eth-inbox-message-preview:last-child {
609
+ border-block-end: 0;
610
+ }
611
+
612
+ .eth-inbox-message-composer,
613
+ .eth-inbox-composer {
614
+ background: var(--eth-color-layer-01);
615
+ border: 1px solid var(--eth-color-border-subtle);
616
+ border-radius: 0;
617
+ display: grid;
618
+ gap: 0;
619
+ inline-size: min(100%, 58rem);
620
+ margin-inline: auto;
621
+ overflow: hidden;
622
+ padding: 0;
623
+ }
624
+
625
+ .eth-inbox-composer__fields,
626
+ .eth-inbox-composer__address-fields {
627
+ display: grid;
628
+ gap: 0;
629
+ }
630
+
631
+ .eth-inbox-composer__field.eth-form-field {
632
+ align-items: center;
633
+ border-block-end: 1px solid var(--eth-color-border-subtle);
634
+ column-gap: var(--eth-space-md);
635
+ display: grid;
636
+ grid-template-columns: minmax(4rem, 5rem) minmax(0, 1fr);
637
+ min-inline-size: 0;
638
+ padding: var(--eth-space-sm) var(--eth-space-lg);
639
+ }
640
+
641
+ .eth-inbox-composer__field.eth-form-field .cds--label {
642
+ margin: 0;
643
+ }
644
+
645
+ .eth-inbox-composer__field .cds--text-input-wrapper,
646
+ .eth-inbox-composer__field .cds--text-area__wrapper,
647
+ .eth-inbox-composer__field .cds--text-input,
648
+ .eth-inbox-composer__field .cds--text-area {
649
+ inline-size: 100%;
650
+ max-inline-size: none;
651
+ min-inline-size: 0;
652
+ }
653
+
654
+ .eth-inbox-composer__field--address .cds--text-input,
655
+ .eth-inbox-composer__field--subject .cds--text-input {
656
+ background: transparent;
657
+ border-block-end-color: transparent;
658
+ padding-inline: 0;
659
+ }
660
+
661
+ .eth-inbox-composer__field--address .cds--text-input:focus,
662
+ .eth-inbox-composer__field--subject .cds--text-input:focus {
663
+ outline: 2px solid var(--eth-color-focus);
664
+ outline-offset: -2px;
665
+ }
666
+
667
+ .eth-inbox-composer__field--body.eth-form-field {
668
+ align-items: stretch;
669
+ gap: var(--eth-space-sm);
670
+ grid-template-columns: minmax(0, 1fr);
671
+ padding-block: var(--eth-space-md);
672
+ }
673
+
674
+ .eth-inbox-composer__field--body .cds--text-area {
675
+ min-block-size: 14rem;
676
+ resize: vertical;
677
+ }
678
+
679
+ .eth-inbox-composer__attachments {
680
+ border-block-end: 1px solid var(--eth-color-border-subtle);
681
+ display: grid;
682
+ gap: 0;
683
+ }
684
+
685
+ .eth-inbox-composer__attachments-header {
686
+ align-items: center;
687
+ background: var(--eth-color-layer-02);
688
+ border-block-end: 1px solid var(--eth-color-border-subtle);
689
+ color: var(--eth-color-text-primary);
690
+ display: flex;
691
+ flex-wrap: wrap;
692
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
693
+ font-weight: 600;
694
+ gap: var(--eth-space-sm);
695
+ justify-content: space-between;
696
+ line-height: 1.2857;
697
+ min-block-size: var(--eth-space-3xl);
698
+ padding: var(--eth-space-sm) var(--eth-space-lg);
699
+ }
700
+
701
+ .eth-inbox-composer__attachments .eth-inbox-attachments {
702
+ border: 0;
703
+ }
704
+
705
+ .eth-inbox-composer__empty-attachments,
706
+ .eth-inbox-composer__status {
707
+ color: var(--eth-color-text-secondary);
708
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
709
+ line-height: 1.3333;
710
+ margin: 0;
711
+ }
712
+
713
+ .eth-inbox-composer__empty-attachments {
714
+ padding: var(--eth-space-md) var(--eth-space-lg);
715
+ }
716
+
717
+ .eth-inbox-composer__footer {
718
+ align-items: center;
719
+ background: var(--eth-color-layer-02);
720
+ display: flex;
721
+ flex-wrap: wrap;
722
+ gap: var(--eth-space-md);
723
+ justify-content: space-between;
724
+ min-block-size: 2.5rem;
725
+ padding: var(--eth-space-md) var(--eth-space-lg);
726
+ }
727
+
728
+ .eth-inbox-composer__actions,
729
+ .eth-inbox-send-approval__actions,
730
+ .eth-inbox-agent-draft__actions,
731
+ .eth-inbox-attachments__actions {
732
+ align-items: center;
733
+ display: flex;
734
+ flex-wrap: wrap;
735
+ gap: var(--eth-space-sm);
736
+ }
737
+
738
+ .eth-inbox-composer__actions {
739
+ margin-inline-start: auto;
740
+ }
741
+
742
+ .eth-inbox-message-filter-bar,
743
+ .eth-inbox-filter-bar {
744
+ align-items: center;
745
+ background: var(--eth-color-layer-01);
746
+ border: 1px solid var(--eth-color-border-subtle);
747
+ display: flex;
748
+ flex-wrap: wrap;
749
+ gap: var(--eth-space-xs);
750
+ inline-size: fit-content;
751
+ max-inline-size: 100%;
752
+ min-inline-size: 0;
753
+ padding: var(--eth-space-xs);
754
+ }
755
+
756
+ .eth-inbox-filter-bar__chip {
757
+ align-items: center;
758
+ appearance: none;
759
+ background: var(--eth-color-layer-02);
760
+ border: 1px solid var(--eth-color-border-subtle);
761
+ border-radius: 0;
762
+ color: var(--eth-color-text-primary);
763
+ cursor: pointer;
764
+ display: inline-flex;
765
+ font: inherit;
766
+ gap: var(--eth-space-sm);
767
+ min-block-size: var(--eth-space-2xl);
768
+ min-inline-size: 0;
769
+ padding: 0 var(--eth-space-md);
770
+ text-align: start;
771
+ transition:
772
+ background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9),
773
+ border-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9),
774
+ box-shadow 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
775
+ }
776
+
777
+ .eth-inbox-filter-bar__chip:hover {
778
+ background: var(--eth-color-layer-hover);
779
+ }
780
+
781
+ .eth-inbox-filter-bar__chip--active {
782
+ background: var(--eth-color-layer-selected);
783
+ border-color: var(--eth-color-interactive-primary);
784
+ box-shadow: inset 0 -2px 0 var(--eth-color-interactive-primary);
785
+ }
786
+
787
+ .eth-inbox-filter-bar__chip--active:hover {
788
+ background: var(--eth-color-layer-selected);
789
+ }
790
+
791
+ .eth-inbox-filter-bar__chip:disabled,
792
+ .eth-inbox-filter-bar__chip--disabled {
793
+ color: #8d8d8d;
794
+ cursor: not-allowed;
795
+ }
796
+
797
+ .eth-inbox-filter-bar__chip:disabled {
798
+ background: var(--eth-color-layer-01);
799
+ border-color: var(--eth-color-border-subtle);
800
+ box-shadow: none;
801
+ }
802
+
803
+ .eth-inbox-filter-bar__kind {
804
+ color: var(--eth-color-text-secondary);
805
+ flex: 0 0 auto;
806
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
807
+ font-weight: 600;
808
+ line-height: 1.3333;
809
+ white-space: nowrap;
810
+ }
811
+
812
+ .eth-inbox-filter-bar__chip--active .eth-inbox-filter-bar__kind {
813
+ color: var(--eth-color-link);
814
+ }
815
+
816
+ .eth-inbox-filter-bar__chip:disabled .eth-inbox-filter-bar__kind,
817
+ .eth-inbox-filter-bar__chip--disabled .eth-inbox-filter-bar__kind {
818
+ color: inherit;
819
+ }
820
+
821
+ .eth-inbox-filter-bar__label {
822
+ flex: 1 1 auto;
823
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
824
+ line-height: 1.2857;
825
+ min-inline-size: 0;
826
+ overflow: hidden;
827
+ text-overflow: ellipsis;
828
+ white-space: nowrap;
829
+ }
830
+
831
+ .eth-inbox-filter-bar__chip--active .eth-inbox-filter-bar__label {
832
+ font-weight: 600;
833
+ }
834
+
835
+ .eth-inbox-recipient-picker {
836
+ background: var(--eth-color-layer-01);
837
+ border: 1px solid var(--eth-color-border-subtle);
838
+ border-radius: 0;
839
+ display: grid;
840
+ gap: 0;
841
+ inline-size: min(100%, 46rem);
842
+ margin-inline: auto;
843
+ overflow: hidden;
844
+ padding: 0;
845
+ }
846
+
847
+ .eth-inbox-recipient-picker__selected {
848
+ align-items: center;
849
+ border-block-end: 1px solid var(--eth-color-border-subtle);
850
+ column-gap: var(--eth-space-md);
851
+ display: grid;
852
+ grid-template-columns: minmax(2.5rem, auto) minmax(0, 1fr);
853
+ min-block-size: 2.5rem;
854
+ min-inline-size: 0;
855
+ padding: var(--eth-space-sm) var(--eth-space-lg);
856
+ }
857
+
858
+ .eth-inbox-recipient-picker__label {
859
+ color: var(--eth-color-text-secondary);
860
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
861
+ font-weight: 600;
862
+ line-height: 1.3333;
863
+ }
864
+
865
+ .eth-inbox-recipient-picker__chips {
866
+ align-items: center;
867
+ display: flex;
868
+ flex-wrap: wrap;
869
+ gap: var(--eth-space-xs);
870
+ min-inline-size: 0;
871
+ }
872
+
873
+ .eth-inbox-recipient-picker__placeholder {
874
+ color: var(--eth-color-text-secondary);
875
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
876
+ line-height: 1.2857;
877
+ }
878
+
879
+ .eth-inbox-recipient-picker__search {
880
+ border-block-end: 1px solid var(--eth-color-border-subtle);
881
+ }
882
+
883
+ .eth-inbox-recipient-picker__manual {
884
+ align-items: end;
885
+ background: var(--eth-color-layer-02);
886
+ border-block-end: 1px solid var(--eth-color-border-subtle);
887
+ display: grid;
888
+ gap: var(--eth-space-sm);
889
+ grid-template-columns: minmax(12rem, 1fr) auto;
890
+ min-inline-size: 0;
891
+ padding: var(--eth-space-md) var(--eth-space-lg);
892
+ }
893
+
894
+ .eth-inbox-recipient-picker__manual-input,
895
+ .eth-inbox-recipient-picker__manual-input .cds--text-input-wrapper,
896
+ .eth-inbox-recipient-picker__manual-input .cds--text-input {
897
+ inline-size: 100%;
898
+ max-inline-size: none;
899
+ min-inline-size: 0;
900
+ }
901
+
902
+ .eth-inbox-recipient-picker__suggestions {
903
+ background: var(--eth-color-layer-01);
904
+ border: 0;
905
+ border-radius: 0;
906
+ display: grid;
907
+ gap: 0;
908
+ min-inline-size: 0;
909
+ }
910
+
911
+ .eth-inbox-recipient-picker__suggestions-header {
912
+ align-items: center;
913
+ background: var(--eth-color-layer-02);
914
+ border-block-end: 1px solid var(--eth-color-border-subtle);
915
+ color: var(--eth-color-text-secondary);
916
+ display: flex;
917
+ flex-wrap: wrap;
918
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
919
+ gap: var(--eth-space-sm);
920
+ justify-content: space-between;
921
+ line-height: 1.3333;
922
+ min-block-size: var(--eth-space-2xl);
923
+ padding: var(--eth-space-sm) var(--eth-space-lg);
924
+ }
925
+
926
+ .eth-inbox-recipient-picker__suggestions-header strong {
927
+ color: var(--eth-color-text-primary);
928
+ font-weight: 600;
929
+ }
930
+
931
+ .eth-inbox-recipient-picker__suggestions-list {
932
+ list-style: none;
933
+ margin: 0;
934
+ max-block-size: 14rem;
935
+ overflow: auto;
936
+ padding: 0;
937
+ }
938
+
939
+ .eth-inbox-recipient-picker__suggestions-list li {
940
+ margin: 0;
941
+ }
942
+
943
+ .eth-inbox-recipient-picker__suggestions button {
944
+ background: transparent;
945
+ border: 0;
946
+ border-block-end: 1px solid var(--eth-color-border-subtle);
947
+ color: var(--eth-color-text-primary);
948
+ cursor: pointer;
949
+ display: grid;
950
+ gap: var(--eth-space-md);
951
+ grid-template-columns: minmax(0, 1fr) auto;
952
+ inline-size: 100%;
953
+ min-block-size: 2.5rem;
954
+ padding: var(--eth-space-sm) var(--eth-space-lg);
955
+ text-align: start;
956
+ }
957
+
958
+ .eth-inbox-recipient-picker__suggestions li:last-child button {
959
+ border-block-end: 0;
960
+ }
961
+
962
+ .eth-inbox-recipient-picker__suggestions button:hover {
963
+ background: var(--eth-color-layer-hover);
964
+ }
965
+
966
+ .eth-inbox-recipient-picker__suggestions button[aria-selected="true"] {
967
+ background: var(--eth-color-layer-selected);
968
+ box-shadow: inset 3px 0 0 var(--eth-color-interactive-primary);
969
+ }
970
+
971
+ .eth-inbox-recipient-picker__suggestions button[aria-disabled="true"] {
972
+ cursor: default;
973
+ }
974
+
975
+ .eth-inbox-recipient-picker__suggestion-copy {
976
+ display: grid;
977
+ gap: var(--eth-space-2xs);
978
+ min-inline-size: 0;
979
+ }
980
+
981
+ .eth-inbox-recipient-picker__suggestion-copy strong {
982
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
983
+ font-weight: 600;
984
+ line-height: 1.2857;
985
+ min-inline-size: 0;
986
+ overflow: hidden;
987
+ text-overflow: ellipsis;
988
+ white-space: nowrap;
989
+ }
990
+
991
+ .eth-inbox-recipient-picker__suggestion-copy span,
992
+ .eth-inbox-recipient-picker__suggestion-status,
993
+ .eth-inbox-recipient-picker__empty,
994
+ .eth-inbox-attachments__meta {
995
+ color: var(--eth-color-text-secondary);
996
+ }
997
+
998
+ .eth-inbox-recipient-picker__suggestion-status {
999
+ align-self: center;
1000
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1001
+ font-weight: 600;
1002
+ line-height: 1.3333;
1003
+ }
1004
+
1005
+ .eth-inbox-recipient-picker__empty {
1006
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1007
+ line-height: 1.2857;
1008
+ margin: 0;
1009
+ padding: var(--eth-space-md) var(--eth-space-lg);
1010
+ }
1011
+
1012
+ .eth-inbox-attachment-list,
1013
+ .eth-inbox-attachments {
1014
+ background: var(--eth-color-layer-01);
1015
+ border: 1px solid var(--eth-color-border-subtle);
1016
+ display: grid;
1017
+ gap: 0;
1018
+ }
1019
+
1020
+ .eth-inbox-attachments__tile {
1021
+ align-items: center;
1022
+ background: var(--eth-color-layer-01);
1023
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1024
+ border-radius: 0;
1025
+ display: grid;
1026
+ gap: var(--eth-space-md);
1027
+ grid-template-columns: auto minmax(0, 1fr) auto;
1028
+ min-block-size: 4rem;
1029
+ padding: var(--eth-space-md);
1030
+ transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
1031
+ }
1032
+
1033
+ .eth-inbox-attachments__tile:last-child {
1034
+ border-block-end: 0;
1035
+ }
1036
+
1037
+ .eth-inbox-attachments__tile:hover {
1038
+ background: var(--eth-color-layer-hover);
1039
+ }
1040
+
1041
+ .eth-inbox-attachments__icon {
1042
+ align-items: center;
1043
+ background: var(--eth-color-layer-02);
1044
+ border: 1px solid var(--eth-color-border-subtle);
1045
+ color: var(--eth-color-text-secondary);
1046
+ display: inline-flex;
1047
+ justify-content: center;
1048
+ block-size: 2.5rem;
1049
+ inline-size: 2.5rem;
1050
+ }
1051
+
1052
+ .eth-inbox-attachments__content {
1053
+ display: grid;
1054
+ gap: var(--eth-space-2xs);
1055
+ min-width: 0;
1056
+ }
1057
+
1058
+ .eth-inbox-attachments__content strong {
1059
+ color: var(--eth-color-text-primary);
1060
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1061
+ font-weight: 600;
1062
+ line-height: 1.2857;
1063
+ min-width: 0;
1064
+ overflow: hidden;
1065
+ text-overflow: ellipsis;
1066
+ white-space: nowrap;
1067
+ }
1068
+
1069
+ .eth-inbox-attachments__meta {
1070
+ align-items: center;
1071
+ display: flex;
1072
+ flex-wrap: wrap;
1073
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1074
+ gap: var(--eth-space-sm);
1075
+ line-height: 1.3333;
1076
+ min-width: 0;
1077
+ }
1078
+
1079
+ .eth-inbox-attachments__type {
1080
+ border: 1px solid var(--eth-color-border-subtle);
1081
+ color: var(--eth-color-text-primary);
1082
+ font-weight: 600;
1083
+ line-height: 1rem;
1084
+ padding-inline: var(--eth-space-xs);
1085
+ }
1086
+
1087
+ .eth-inbox-attachments__actions {
1088
+ gap: var(--eth-space-2xs);
1089
+ justify-content: flex-end;
1090
+ }
1091
+
1092
+ .eth-inbox-attachment-preview {
1093
+ background: var(--eth-color-layer-01);
1094
+ border: 1px solid var(--eth-color-border-subtle);
1095
+ border-radius: 0;
1096
+ display: grid;
1097
+ gap: 0;
1098
+ inline-size: 100%;
1099
+ margin-inline: auto;
1100
+ max-inline-size: 56rem;
1101
+ min-width: 0;
1102
+ overflow: hidden;
1103
+ }
1104
+
1105
+ .eth-inbox-attachment-preview__header {
1106
+ align-items: center;
1107
+ background: var(--eth-color-layer-02);
1108
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1109
+ flex-wrap: wrap;
1110
+ padding: var(--eth-space-md);
1111
+ }
1112
+
1113
+ .eth-inbox-attachment-preview__file {
1114
+ align-items: center;
1115
+ display: grid;
1116
+ flex: 1 1 16rem;
1117
+ gap: var(--eth-space-sm);
1118
+ grid-template-columns: auto minmax(0, 1fr);
1119
+ min-width: 0;
1120
+ }
1121
+
1122
+ .eth-inbox-attachment-preview__glyph {
1123
+ align-items: end;
1124
+ background: var(--eth-color-layer-01);
1125
+ block-size: 2.75rem;
1126
+ border: 1px solid var(--eth-color-border-subtle);
1127
+ border-block-end: 3px solid var(--eth-color-text-secondary);
1128
+ color: var(--eth-color-text-secondary);
1129
+ display: inline-flex;
1130
+ font-size: calc(0.625rem * var(--eth-text-scale, 1));
1131
+ font-weight: 600;
1132
+ inline-size: 2.25rem;
1133
+ justify-content: center;
1134
+ line-height: 1;
1135
+ padding: 0 0 var(--eth-space-xs);
1136
+ position: relative;
1137
+ }
1138
+
1139
+ .eth-inbox-attachment-preview__glyph::after {
1140
+ border-block-start: 0.625rem solid var(--eth-color-layer-02);
1141
+ border-inline-start: 0.625rem solid var(--eth-color-border-subtle);
1142
+ content: "";
1143
+ inset-block-start: -1px;
1144
+ inset-inline-end: -1px;
1145
+ position: absolute;
1146
+ }
1147
+
1148
+ .eth-inbox-attachment-preview__glyph[data-kind="pdf"] {
1149
+ border-block-end-color: var(--eth-color-danger);
1150
+ color: var(--eth-color-danger);
1151
+ }
1152
+
1153
+ .eth-inbox-attachment-preview__glyph[data-kind="image"],
1154
+ .eth-inbox-attachment-preview__glyph[data-kind="text"] {
1155
+ border-block-end-color: var(--eth-color-info);
1156
+ color: var(--eth-color-info);
1157
+ }
1158
+
1159
+ .eth-inbox-attachment-preview__glyph[data-kind="spreadsheet"] {
1160
+ border-block-end-color: var(--eth-color-success);
1161
+ color: var(--eth-color-success);
1162
+ }
1163
+
1164
+ .eth-inbox-attachment-preview__summary {
1165
+ display: grid;
1166
+ gap: var(--eth-space-2xs);
1167
+ min-width: 0;
1168
+ }
1169
+
1170
+ .eth-inbox-attachment-preview__summary strong {
1171
+ line-height: 1.375;
1172
+ min-width: 0;
1173
+ overflow: hidden;
1174
+ text-overflow: ellipsis;
1175
+ white-space: nowrap;
1176
+ }
1177
+
1178
+ .eth-inbox-attachment-preview__summary span {
1179
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1180
+ line-height: 1.2857;
1181
+ overflow-wrap: anywhere;
1182
+ }
1183
+
1184
+ .eth-inbox-attachment-preview__state {
1185
+ background: var(--eth-color-layer-01);
1186
+ border: 1px solid var(--eth-color-border-subtle);
1187
+ color: var(--eth-color-text-secondary);
1188
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1189
+ font-weight: 600;
1190
+ line-height: 1.333;
1191
+ padding: var(--eth-space-xs) var(--eth-space-sm);
1192
+ white-space: nowrap;
1193
+ }
1194
+
1195
+ .eth-inbox-attachment-preview__body {
1196
+ background: var(--eth-color-background);
1197
+ color: var(--eth-color-text-primary);
1198
+ display: grid;
1199
+ min-block-size: 18rem;
1200
+ overflow: auto;
1201
+ padding: var(--eth-space-lg);
1202
+ place-items: center;
1203
+ }
1204
+
1205
+ .eth-inbox-attachment-preview__body--archive,
1206
+ .eth-inbox-attachment-preview__body--empty,
1207
+ .eth-inbox-attachment-preview__body--file {
1208
+ min-block-size: 9rem;
1209
+ }
1210
+
1211
+ .eth-inbox-attachment-preview__image {
1212
+ block-size: auto;
1213
+ max-block-size: 28rem;
1214
+ max-inline-size: 100%;
1215
+ object-fit: contain;
1216
+ }
1217
+
1218
+ .eth-inbox-attachment-preview__image-frame {
1219
+ aspect-ratio: 16 / 9;
1220
+ background:
1221
+ linear-gradient(135deg, rgba(15, 98, 254, 0.08), transparent 52%),
1222
+ linear-gradient(0deg, var(--eth-color-layer-02), var(--eth-color-layer-02));
1223
+ border: 1px solid var(--eth-color-border-subtle);
1224
+ inline-size: min(100%, 34rem);
1225
+ overflow: hidden;
1226
+ position: relative;
1227
+ }
1228
+
1229
+ .eth-inbox-attachment-preview__image-frame span:first-child {
1230
+ background: var(--eth-color-layer-01);
1231
+ block-size: 52%;
1232
+ border: 1px solid var(--eth-color-border-subtle);
1233
+ inline-size: 42%;
1234
+ inset-block-start: 18%;
1235
+ inset-inline-start: 12%;
1236
+ position: absolute;
1237
+ }
1238
+
1239
+ .eth-inbox-attachment-preview__image-frame span:last-child {
1240
+ background: var(--eth-color-border-subtle);
1241
+ block-size: 38%;
1242
+ clip-path: polygon(0 100%, 42% 35%, 64% 62%, 82% 28%, 100% 100%);
1243
+ inline-size: 76%;
1244
+ inset-block-end: 12%;
1245
+ inset-inline-start: 12%;
1246
+ position: absolute;
1247
+ }
1248
+
1249
+ .eth-inbox-attachment-preview__document {
1250
+ background: var(--eth-color-layer-01);
1251
+ border: 1px solid var(--eth-color-border-subtle);
1252
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
1253
+ display: grid;
1254
+ grid-template-rows: auto minmax(0, 1fr);
1255
+ inline-size: min(100%, 40rem);
1256
+ min-block-size: 15rem;
1257
+ }
1258
+
1259
+ .eth-inbox-attachment-preview__document-bar {
1260
+ align-items: center;
1261
+ background: var(--eth-color-layer-02);
1262
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1263
+ color: var(--eth-color-text-secondary);
1264
+ display: flex;
1265
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1266
+ justify-content: space-between;
1267
+ line-height: 1.333;
1268
+ padding: var(--eth-space-sm) var(--eth-space-md);
1269
+ }
1270
+
1271
+ .eth-inbox-attachment-preview__page {
1272
+ align-content: start;
1273
+ background: #ffffff;
1274
+ border: 1px solid #e0e0e0;
1275
+ color: #161616;
1276
+ display: grid;
1277
+ gap: var(--eth-space-sm);
1278
+ inline-size: min(100%, 26rem);
1279
+ margin: var(--eth-space-lg) auto;
1280
+ min-block-size: 12rem;
1281
+ padding: var(--eth-space-lg);
1282
+ }
1283
+
1284
+ .eth-inbox-attachment-preview__page strong {
1285
+ font-size: calc(1rem * var(--eth-text-scale, 1));
1286
+ line-height: 1.375;
1287
+ min-width: 0;
1288
+ overflow: hidden;
1289
+ text-overflow: ellipsis;
1290
+ white-space: nowrap;
1291
+ }
1292
+
1293
+ .eth-inbox-attachment-preview__page span,
1294
+ .eth-inbox-attachment-preview__text span {
1295
+ background: var(--eth-color-border-subtle);
1296
+ block-size: 0.625rem;
1297
+ display: block;
1298
+ }
1299
+
1300
+ .eth-inbox-attachment-preview__page span:nth-child(2) {
1301
+ inline-size: 92%;
1302
+ }
1303
+
1304
+ .eth-inbox-attachment-preview__page span:nth-child(3) {
1305
+ inline-size: 76%;
1306
+ }
1307
+
1308
+ .eth-inbox-attachment-preview__page span:nth-child(4) {
1309
+ inline-size: 88%;
1310
+ }
1311
+
1312
+ .eth-inbox-attachment-preview__page span:nth-child(5) {
1313
+ inline-size: 64%;
1314
+ }
1315
+
1316
+ .eth-inbox-attachment-preview__page span:nth-child(6) {
1317
+ inline-size: 82%;
1318
+ }
1319
+
1320
+ .eth-inbox-attachment-preview__text {
1321
+ background: var(--eth-color-layer-01);
1322
+ border: 1px solid var(--eth-color-border-subtle);
1323
+ display: grid;
1324
+ gap: var(--eth-space-sm);
1325
+ inline-size: min(100%, 36rem);
1326
+ padding: var(--eth-space-lg);
1327
+ }
1328
+
1329
+ .eth-inbox-attachment-preview__text span:nth-child(1),
1330
+ .eth-inbox-attachment-preview__text span:nth-child(5) {
1331
+ inline-size: 88%;
1332
+ }
1333
+
1334
+ .eth-inbox-attachment-preview__text span:nth-child(2),
1335
+ .eth-inbox-attachment-preview__text span:nth-child(7) {
1336
+ inline-size: 72%;
1337
+ }
1338
+
1339
+ .eth-inbox-attachment-preview__text span:nth-child(3),
1340
+ .eth-inbox-attachment-preview__text span:nth-child(6) {
1341
+ inline-size: 95%;
1342
+ }
1343
+
1344
+ .eth-inbox-attachment-preview__text span:nth-child(4),
1345
+ .eth-inbox-attachment-preview__text span:nth-child(8),
1346
+ .eth-inbox-attachment-preview__text span:nth-child(9) {
1347
+ inline-size: 58%;
1348
+ }
1349
+
1350
+ .eth-inbox-attachment-preview__sheet {
1351
+ background: var(--eth-color-layer-01);
1352
+ border-block-start: 1px solid var(--eth-color-border-subtle);
1353
+ border-inline-start: 1px solid var(--eth-color-border-subtle);
1354
+ display: grid;
1355
+ grid-template-columns: repeat(5, minmax(0, 1fr));
1356
+ inline-size: min(100%, 38rem);
1357
+ }
1358
+
1359
+ .eth-inbox-attachment-preview__sheet span {
1360
+ background: var(--eth-color-layer-01);
1361
+ block-size: 2rem;
1362
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1363
+ border-inline-end: 1px solid var(--eth-color-border-subtle);
1364
+ }
1365
+
1366
+ .eth-inbox-attachment-preview__sheet span:nth-child(-n + 5) {
1367
+ background: var(--eth-color-layer-02);
1368
+ }
1369
+
1370
+ .eth-inbox-attachment-preview__sheet span:nth-child(7),
1371
+ .eth-inbox-attachment-preview__sheet span:nth-child(13),
1372
+ .eth-inbox-attachment-preview__sheet span:nth-child(19) {
1373
+ background: rgba(36, 161, 72, 0.1);
1374
+ }
1375
+
1376
+ .eth-inbox-attachment-preview__empty {
1377
+ color: var(--eth-color-text-secondary);
1378
+ display: grid;
1379
+ gap: var(--eth-space-xs);
1380
+ max-inline-size: 28rem;
1381
+ text-align: center;
1382
+ }
1383
+
1384
+ .eth-inbox-attachment-preview__empty strong {
1385
+ color: var(--eth-color-text-primary);
1386
+ }
1387
+
1388
+ .eth-inbox-label-manager__list,
1389
+ .eth-inbox-rules__list,
1390
+ .eth-inbox-priority {
1391
+ display: grid;
1392
+ gap: var(--eth-space-sm);
1393
+ }
1394
+
1395
+ .eth-inbox-label-manager {
1396
+ background: var(--eth-color-layer-01);
1397
+ border: 1px solid var(--eth-color-border-subtle);
1398
+ border-radius: 0;
1399
+ gap: 0;
1400
+ inline-size: 100%;
1401
+ max-inline-size: 64rem;
1402
+ }
1403
+
1404
+ .eth-inbox-label-manager > .eth-panel__header {
1405
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1406
+ padding: var(--eth-space-lg);
1407
+ }
1408
+
1409
+ .eth-inbox-label-manager > .eth-panel__header h3 {
1410
+ font-size: calc(1.25rem * var(--eth-text-scale, 1));
1411
+ line-height: 1.4;
1412
+ }
1413
+
1414
+ .eth-inbox-label-manager > .eth-panel__body {
1415
+ display: grid;
1416
+ gap: var(--eth-space-lg);
1417
+ min-width: 0;
1418
+ padding: var(--eth-space-lg);
1419
+ }
1420
+
1421
+ .eth-inbox-label-manager__list {
1422
+ border: 1px solid var(--eth-color-border-subtle);
1423
+ gap: 0;
1424
+ min-width: 0;
1425
+ }
1426
+
1427
+ .eth-inbox-label-manager__table-head,
1428
+ .eth-inbox-label-manager__row {
1429
+ display: grid;
1430
+ gap: var(--eth-space-md);
1431
+ grid-template-columns: minmax(14rem, 1fr) minmax(7rem, 9rem) minmax(12rem, max-content);
1432
+ min-width: 0;
1433
+ }
1434
+
1435
+ .eth-inbox-label-manager__table-head {
1436
+ background: var(--eth-color-layer-02);
1437
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1438
+ color: var(--eth-color-text-secondary);
1439
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1440
+ font-weight: 600;
1441
+ line-height: 1.333;
1442
+ padding: var(--eth-space-sm) var(--eth-space-md);
1443
+ }
1444
+
1445
+ .eth-inbox-label-manager__table-head span:last-child {
1446
+ justify-self: end;
1447
+ }
1448
+
1449
+ .eth-inbox-label-manager__row {
1450
+ align-items: center;
1451
+ background: var(--eth-color-layer-01);
1452
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1453
+ min-block-size: 4rem;
1454
+ padding: var(--eth-space-sm) var(--eth-space-md);
1455
+ }
1456
+
1457
+ .eth-inbox-label-manager__row:last-child {
1458
+ border-block-end: 0;
1459
+ }
1460
+
1461
+ .eth-inbox-label-manager__row:hover {
1462
+ background: var(--eth-color-layer-hover);
1463
+ }
1464
+
1465
+ .eth-inbox-label-manager__name-cell,
1466
+ .eth-inbox-label-manager__count-cell {
1467
+ min-width: 0;
1468
+ }
1469
+
1470
+ .eth-inbox-label-manager__name-cell .cds--form-item {
1471
+ margin: 0;
1472
+ }
1473
+
1474
+ .eth-inbox-label-manager__count-cell {
1475
+ align-items: baseline;
1476
+ color: var(--eth-color-text-secondary);
1477
+ display: flex;
1478
+ gap: var(--eth-space-xs);
1479
+ white-space: nowrap;
1480
+ }
1481
+
1482
+ .eth-inbox-label-manager__count-cell strong {
1483
+ color: var(--eth-color-text-primary);
1484
+ font-size: calc(1rem * var(--eth-text-scale, 1));
1485
+ font-weight: 600;
1486
+ line-height: 1.375;
1487
+ }
1488
+
1489
+ .eth-inbox-label-manager__count-cell span,
1490
+ .eth-inbox-label-manager__count-muted {
1491
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1492
+ line-height: 1.333;
1493
+ }
1494
+
1495
+ .eth-inbox-label-manager__actions {
1496
+ align-items: center;
1497
+ display: flex;
1498
+ flex-wrap: wrap;
1499
+ gap: var(--eth-space-sm);
1500
+ justify-content: flex-end;
1501
+ min-width: 0;
1502
+ }
1503
+
1504
+ .eth-inbox-label-manager__empty {
1505
+ background: var(--eth-color-layer-02);
1506
+ border: 1px dashed var(--eth-color-border-subtle);
1507
+ color: var(--eth-color-text-secondary);
1508
+ margin: 0;
1509
+ padding: var(--eth-space-lg);
1510
+ }
1511
+
1512
+ .eth-inbox-label-manager__create {
1513
+ align-items: end;
1514
+ background: var(--eth-color-layer-02);
1515
+ border: 1px solid var(--eth-color-border-subtle);
1516
+ display: grid;
1517
+ gap: var(--eth-space-md);
1518
+ grid-template-columns: minmax(14rem, 24rem) auto;
1519
+ justify-content: start;
1520
+ padding: var(--eth-space-md);
1521
+ }
1522
+
1523
+ .eth-inbox-label-manager__create .eth-form-field {
1524
+ margin: 0;
1525
+ }
1526
+
1527
+ .eth-inbox-priority-view,
1528
+ .eth-inbox-priority {
1529
+ container-type: inline-size;
1530
+ display: grid;
1531
+ gap: var(--eth-space-lg);
1532
+ inline-size: min(100%, 72rem);
1533
+ min-inline-size: 0;
1534
+ }
1535
+
1536
+ .eth-inbox-priority__group {
1537
+ background: var(--eth-color-layer-01);
1538
+ border: 1px solid var(--eth-color-border-subtle);
1539
+ border-radius: 0;
1540
+ min-inline-size: 0;
1541
+ overflow: hidden;
1542
+ }
1543
+
1544
+ .eth-inbox-priority__group-header {
1545
+ align-items: center;
1546
+ background: var(--eth-color-layer-02);
1547
+ border-bottom: 1px solid var(--eth-color-border-subtle);
1548
+ display: grid;
1549
+ gap: var(--eth-space-md);
1550
+ grid-template-columns: minmax(0, 1fr) max-content;
1551
+ min-block-size: var(--eth-space-3xl);
1552
+ padding: var(--eth-space-md) var(--eth-space-lg);
1553
+ }
1554
+
1555
+ .eth-inbox-priority__heading {
1556
+ display: grid;
1557
+ gap: var(--eth-space-2xs);
1558
+ min-inline-size: 0;
1559
+ }
1560
+
1561
+ .eth-inbox-priority__group h3 {
1562
+ color: var(--eth-color-text-primary);
1563
+ font-size: calc(1rem * var(--eth-text-scale, 1));
1564
+ font-weight: 600;
1565
+ line-height: 1.375;
1566
+ margin: 0;
1567
+ min-inline-size: 0;
1568
+ overflow-wrap: anywhere;
1569
+ }
1570
+
1571
+ .eth-inbox-priority__description {
1572
+ color: var(--eth-color-text-secondary);
1573
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1574
+ line-height: 1.333;
1575
+ margin: 0;
1576
+ }
1577
+
1578
+ .eth-inbox-priority__count {
1579
+ align-items: center;
1580
+ background: var(--eth-color-layer-01);
1581
+ border: 1px solid var(--eth-color-border-subtle);
1582
+ color: var(--eth-color-text-secondary);
1583
+ display: inline-flex;
1584
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1585
+ font-variant-numeric: tabular-nums;
1586
+ font-weight: 600;
1587
+ justify-content: center;
1588
+ line-height: 1.333;
1589
+ min-block-size: 1.5rem;
1590
+ padding: 0 var(--eth-space-sm);
1591
+ white-space: nowrap;
1592
+ }
1593
+
1594
+ .eth-inbox-priority__group .eth-inbox-message-list {
1595
+ border: 0;
1596
+ }
1597
+
1598
+ .eth-inbox-priority__group .eth-inbox-message-list__row {
1599
+ min-block-size: 5rem;
1600
+ }
1601
+
1602
+ .eth-inbox-priority__empty {
1603
+ align-items: center;
1604
+ background: var(--eth-color-layer-02);
1605
+ border: 1px dashed var(--eth-color-border-subtle);
1606
+ color: var(--eth-color-text-secondary);
1607
+ display: flex;
1608
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1609
+ justify-content: center;
1610
+ line-height: 1.2857;
1611
+ min-block-size: 7rem;
1612
+ padding: var(--eth-space-xl);
1613
+ text-align: center;
1614
+ }
1615
+
1616
+ @container (inline-size <= 34rem) {
1617
+ .eth-inbox-priority__group-header {
1618
+ align-items: start;
1619
+ grid-template-columns: minmax(0, 1fr);
1620
+ }
1621
+
1622
+ .eth-inbox-priority__count {
1623
+ justify-self: start;
1624
+ }
1625
+ }
1626
+
1627
+ .eth-inbox-email-automation,
1628
+ .eth-inbox-rules {
1629
+ display: grid;
1630
+ gap: var(--eth-space-md);
1631
+ }
1632
+
1633
+ .eth-inbox-rules {
1634
+ background: var(--eth-color-layer-01);
1635
+ border: 1px solid var(--eth-color-border-subtle);
1636
+ gap: 0;
1637
+ max-inline-size: 64rem;
1638
+ padding: 0;
1639
+ }
1640
+
1641
+ .eth-inbox-rules > .eth-panel__header {
1642
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1643
+ padding: var(--eth-space-lg);
1644
+ }
1645
+
1646
+ .eth-inbox-rules > .eth-panel__header h3 {
1647
+ font-size: calc(1.25rem * var(--eth-text-scale, 1));
1648
+ line-height: 1.4;
1649
+ }
1650
+
1651
+ .eth-inbox-rules > .eth-panel__body {
1652
+ display: grid;
1653
+ gap: var(--eth-space-md);
1654
+ padding: var(--eth-space-lg);
1655
+ }
1656
+
1657
+ .eth-inbox-rules__list {
1658
+ border: 1px solid var(--eth-color-border-subtle);
1659
+ gap: 0;
1660
+ }
1661
+
1662
+ .eth-inbox-rules__item {
1663
+ --eth-inbox-rule-accent: var(--eth-color-border-strong);
1664
+
1665
+ align-items: start;
1666
+ background: var(--eth-color-layer-01);
1667
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1668
+ border-inline-start: 3px solid var(--eth-inbox-rule-accent);
1669
+ border-radius: 0;
1670
+ display: grid;
1671
+ gap: var(--eth-space-lg);
1672
+ grid-template-columns: minmax(0, 1fr) auto;
1673
+ padding: var(--eth-space-lg);
1674
+ }
1675
+
1676
+ .eth-inbox-rules__item:last-child {
1677
+ border-block-end: 0;
1678
+ }
1679
+
1680
+ .eth-inbox-rules__item--enabled {
1681
+ --eth-inbox-rule-accent: var(--eth-color-interactive-primary);
1682
+ }
1683
+
1684
+ .eth-inbox-rules__item--paused {
1685
+ --eth-inbox-rule-accent: var(--eth-color-border-strong);
1686
+ background: var(--eth-color-layer-02);
1687
+ }
1688
+
1689
+ .eth-inbox-rules__content,
1690
+ .eth-inbox-rules__definition > div {
1691
+ display: grid;
1692
+ gap: var(--eth-space-sm);
1693
+ min-width: 0;
1694
+ }
1695
+
1696
+ .eth-inbox-rules__item-header,
1697
+ .eth-inbox-rules__controls {
1698
+ align-items: center;
1699
+ display: flex;
1700
+ flex-wrap: wrap;
1701
+ gap: var(--eth-space-sm);
1702
+ }
1703
+
1704
+ .eth-inbox-rules__item-header h4 {
1705
+ font-size: calc(1rem * var(--eth-text-scale, 1));
1706
+ font-weight: 600;
1707
+ line-height: 1.375;
1708
+ margin: 0;
1709
+ }
1710
+
1711
+ .eth-inbox-rules__definition {
1712
+ background: var(--eth-color-layer-01);
1713
+ border: 1px solid var(--eth-color-border-subtle);
1714
+ display: grid;
1715
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1716
+ margin: 0;
1717
+ min-width: 0;
1718
+ }
1719
+
1720
+ .eth-inbox-rules__definition > div {
1721
+ padding: var(--eth-space-md);
1722
+ }
1723
+
1724
+ .eth-inbox-rules__definition > div:not(:last-child) {
1725
+ border-inline-end: 1px solid var(--eth-color-border-subtle);
1726
+ }
1727
+
1728
+ .eth-inbox-rules__definition dt {
1729
+ color: var(--eth-color-text-secondary);
1730
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1731
+ font-weight: 600;
1732
+ line-height: 1.333;
1733
+ }
1734
+
1735
+ .eth-inbox-rules__definition dd {
1736
+ line-height: 1.4286;
1737
+ margin: 0;
1738
+ min-width: 0;
1739
+ overflow-wrap: anywhere;
1740
+ }
1741
+
1742
+ .eth-inbox-rules__definition code {
1743
+ background: var(--eth-color-layer-02);
1744
+ border: 1px solid var(--eth-color-border-subtle);
1745
+ color: var(--eth-color-text-primary);
1746
+ font-family: var(--eth-font-mono);
1747
+ font-size: 0.875em;
1748
+ padding: 0 var(--eth-space-xs);
1749
+ }
1750
+
1751
+ .eth-inbox-rules__controls {
1752
+ justify-content: flex-end;
1753
+ min-inline-size: 13rem;
1754
+ }
1755
+
1756
+ .eth-inbox-rules__toggle {
1757
+ flex: 0 0 auto;
1758
+ }
1759
+
1760
+ .eth-inbox-rules__empty {
1761
+ background: var(--eth-color-layer-02);
1762
+ border: 1px dashed var(--eth-color-border-subtle);
1763
+ color: var(--eth-color-text-secondary);
1764
+ margin: 0;
1765
+ padding: var(--eth-space-lg);
1766
+ }
1767
+
1768
+ .eth-inbox-message-search,
1769
+ .eth-inbox-search {
1770
+ align-items: stretch;
1771
+ background: var(--eth-color-layer-01);
1772
+ border: 1px solid var(--eth-color-border-subtle);
1773
+ border-radius: 0;
1774
+ display: grid;
1775
+ grid-template-columns: minmax(12rem, 1fr) auto;
1776
+ inline-size: min(100%, 48rem);
1777
+ min-inline-size: 0;
1778
+ overflow: hidden;
1779
+ }
1780
+
1781
+ .eth-inbox-search__input {
1782
+ min-inline-size: 0;
1783
+ }
1784
+
1785
+ .eth-inbox-search__control,
1786
+ .eth-inbox-search__input .cds--search,
1787
+ .eth-inbox-search__input .cds--search-input {
1788
+ inline-size: 100%;
1789
+ min-inline-size: 0;
1790
+ }
1791
+
1792
+ .eth-inbox-search__input .cds--search-input {
1793
+ background: var(--eth-color-layer-01);
1794
+ border-block-end: 0;
1795
+ }
1796
+
1797
+ .eth-inbox-search__input:focus-within {
1798
+ outline: 2px solid var(--eth-color-focus);
1799
+ outline-offset: -2px;
1800
+ }
1801
+
1802
+ .eth-inbox-search__input input:focus {
1803
+ outline: 0;
1804
+ }
1805
+
1806
+ .eth-inbox-search__results {
1807
+ align-items: center;
1808
+ background: var(--eth-color-layer-02);
1809
+ border-inline-start: 1px solid var(--eth-color-border-subtle);
1810
+ display: flex;
1811
+ min-inline-size: max-content;
1812
+ }
1813
+
1814
+ .eth-inbox-search__count {
1815
+ color: var(--eth-color-text-secondary);
1816
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1817
+ line-height: 1.2857;
1818
+ padding-inline: var(--eth-space-md);
1819
+ white-space: nowrap;
1820
+ }
1821
+
1822
+ .eth-inbox-search__nav {
1823
+ align-items: center;
1824
+ border-inline-start: 1px solid var(--eth-color-border-subtle);
1825
+ display: flex;
1826
+ }
1827
+
1828
+ .eth-inbox-search__nav-button.eth-icon-button {
1829
+ block-size: var(--eth-space-3xl);
1830
+ inline-size: var(--eth-space-3xl);
1831
+ min-block-size: var(--eth-space-3xl);
1832
+ min-inline-size: var(--eth-space-3xl);
1833
+ }
1834
+
1835
+ .eth-inbox-search__nav-button + .eth-inbox-search__nav-button {
1836
+ border-inline-start: 1px solid var(--eth-color-border-subtle);
1837
+ }
1838
+
1839
+ .eth-inbox-search__nav-button--previous svg {
1840
+ transform: rotate(180deg);
1841
+ }
1842
+
1843
+ .eth-inbox-approval-to-send,
1844
+ .eth-inbox-send-approval,
1845
+ .eth-inbox-agent-draft-review,
1846
+ .eth-inbox-agent-draft,
1847
+ .eth-inbox-thread-summary {
1848
+ background: var(--eth-color-layer-01);
1849
+ border: 1px solid var(--eth-color-border-subtle);
1850
+ border-radius: 0;
1851
+ display: grid;
1852
+ gap: var(--eth-space-md);
1853
+ padding: var(--eth-space-lg);
1854
+ }
1855
+
1856
+ .eth-inbox-thread-summary {
1857
+ gap: 0;
1858
+ inline-size: 100%;
1859
+ max-inline-size: 48rem;
1860
+ padding: 0;
1861
+ }
1862
+
1863
+ .eth-inbox-thread-summary > .eth-panel__header {
1864
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1865
+ padding: var(--eth-space-lg) var(--eth-space-lg) var(--eth-space-md);
1866
+ }
1867
+
1868
+ .eth-inbox-thread-summary > .eth-panel__header h3 {
1869
+ font-size: calc(1rem * var(--eth-text-scale, 1));
1870
+ font-weight: 600;
1871
+ line-height: 1.375;
1872
+ }
1873
+
1874
+ .eth-inbox-thread-summary > .eth-panel__header p {
1875
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1876
+ line-height: 1.2857;
1877
+ max-inline-size: 34rem;
1878
+ }
1879
+
1880
+ .eth-inbox-thread-summary > .eth-panel__body {
1881
+ display: grid;
1882
+ min-width: 0;
1883
+ padding: var(--eth-space-lg);
1884
+ }
1885
+
1886
+ .eth-inbox-thread-summary__content {
1887
+ display: grid;
1888
+ gap: var(--eth-space-md);
1889
+ min-width: 0;
1890
+ }
1891
+
1892
+ .eth-inbox-thread-summary__metadata {
1893
+ align-items: center;
1894
+ color: var(--eth-color-text-secondary);
1895
+ display: flex;
1896
+ flex-wrap: wrap;
1897
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1898
+ gap: var(--eth-space-sm);
1899
+ line-height: 1.2857;
1900
+ min-width: 0;
1901
+ }
1902
+
1903
+ .eth-inbox-thread-summary__summary,
1904
+ .eth-inbox-thread-summary__empty,
1905
+ .eth-inbox-thread-summary__no-sources {
1906
+ background: var(--eth-color-layer-02);
1907
+ border: 1px solid var(--eth-color-border-subtle);
1908
+ display: grid;
1909
+ gap: var(--eth-space-sm);
1910
+ min-width: 0;
1911
+ padding: var(--eth-space-md);
1912
+ }
1913
+
1914
+ .eth-inbox-thread-summary__summary {
1915
+ border-inline-start: 4px solid var(--eth-color-info);
1916
+ }
1917
+
1918
+ .eth-inbox-thread-summary__section-label {
1919
+ color: var(--eth-color-text-secondary);
1920
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1921
+ font-weight: 600;
1922
+ line-height: 1.333;
1923
+ }
1924
+
1925
+ .eth-inbox-thread-summary__summary-body {
1926
+ color: var(--eth-color-text-primary);
1927
+ line-height: 1.5;
1928
+ max-inline-size: 56rem;
1929
+ min-width: 0;
1930
+ }
1931
+
1932
+ .eth-inbox-thread-summary__summary-body > :first-child {
1933
+ margin-block-start: 0;
1934
+ }
1935
+
1936
+ .eth-inbox-thread-summary__summary-body > :last-child {
1937
+ margin-block-end: 0;
1938
+ }
1939
+
1940
+ .eth-inbox-thread-summary__sources {
1941
+ display: grid;
1942
+ gap: var(--eth-space-xs);
1943
+ min-width: 0;
1944
+ }
1945
+
1946
+ .eth-inbox-thread-summary__source-list {
1947
+ align-items: center;
1948
+ display: flex;
1949
+ flex-wrap: wrap;
1950
+ gap: var(--eth-space-xs);
1951
+ list-style: none;
1952
+ margin: 0;
1953
+ min-width: 0;
1954
+ padding: 0;
1955
+ }
1956
+
1957
+ .eth-inbox-thread-summary__source-item {
1958
+ display: flex;
1959
+ min-width: 0;
1960
+ }
1961
+
1962
+ .eth-inbox-thread-summary__source-link {
1963
+ max-inline-size: 100%;
1964
+ text-decoration: none;
1965
+ }
1966
+
1967
+ .eth-inbox-thread-summary__source-link:focus-visible {
1968
+ outline: 2px solid var(--eth-color-focus);
1969
+ outline-offset: 2px;
1970
+ }
1971
+
1972
+ .eth-inbox-thread-summary__source-link:hover .eth-inbox-thread-summary__source-token {
1973
+ background: var(--eth-color-layer-hover);
1974
+ }
1975
+
1976
+ .eth-inbox-thread-summary__source-reference {
1977
+ max-inline-size: 100%;
1978
+ }
1979
+
1980
+ .eth-inbox-thread-summary__no-sources {
1981
+ border-style: dashed;
1982
+ color: var(--eth-color-text-secondary);
1983
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1984
+ line-height: 1.2857;
1985
+ }
1986
+
1987
+ .eth-inbox-thread-summary__empty {
1988
+ border-style: dashed;
1989
+ }
1990
+
1991
+ .eth-inbox-thread-summary__empty strong {
1992
+ color: var(--eth-color-text-primary);
1993
+ }
1994
+
1995
+ .eth-inbox-thread-summary__empty p {
1996
+ color: var(--eth-color-text-secondary);
1997
+ margin: 0;
1998
+ max-inline-size: 34rem;
1999
+ }
2000
+
2001
+ .eth-inbox-send-approval {
2002
+ --eth-inbox-send-approval-accent: var(--eth-color-info);
2003
+
2004
+ border-inline-start: 4px solid var(--eth-inbox-send-approval-accent);
2005
+ gap: 0;
2006
+ max-inline-size: 64rem;
2007
+ padding: 0;
2008
+ }
2009
+
2010
+ .eth-inbox-send-approval > .eth-panel__header {
2011
+ border-block-end: 1px solid var(--eth-color-border-subtle);
2012
+ padding: var(--eth-space-lg);
2013
+ }
2014
+
2015
+ .eth-inbox-send-approval > .eth-panel__body {
2016
+ display: grid;
2017
+ gap: var(--eth-space-lg);
2018
+ padding: var(--eth-space-lg);
2019
+ }
2020
+
2021
+ .eth-inbox-send-approval--low {
2022
+ --eth-inbox-send-approval-accent: var(--eth-color-info);
2023
+ }
2024
+
2025
+ .eth-inbox-send-approval--medium {
2026
+ --eth-inbox-send-approval-accent: var(--eth-color-warning);
2027
+ }
2028
+
2029
+ .eth-inbox-send-approval--high,
2030
+ .eth-inbox-send-approval--critical {
2031
+ --eth-inbox-send-approval-accent: var(--eth-color-danger);
2032
+ }
2033
+
2034
+ .eth-inbox-send-approval__status {
2035
+ align-items: center;
2036
+ background: var(--eth-color-layer-02);
2037
+ border: 1px solid var(--eth-color-border-subtle);
2038
+ display: flex;
2039
+ flex-wrap: wrap;
2040
+ gap: var(--eth-space-sm);
2041
+ justify-content: space-between;
2042
+ padding: var(--eth-space-md);
2043
+ }
2044
+
2045
+ .eth-inbox-send-approval__summary,
2046
+ .eth-inbox-agent-draft__evidence-list {
2047
+ align-items: center;
2048
+ display: flex;
2049
+ flex-wrap: wrap;
2050
+ gap: var(--eth-space-sm);
2051
+ }
2052
+
2053
+ .eth-inbox-send-approval__policy {
2054
+ color: var(--eth-color-text-secondary);
2055
+ font-family: var(--eth-font-mono);
2056
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
2057
+ line-height: 1.2857;
2058
+ }
2059
+
2060
+ .eth-inbox-send-approval__state {
2061
+ color: var(--eth-color-text-secondary);
2062
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
2063
+ line-height: 1.2857;
2064
+ }
2065
+
2066
+ .eth-inbox-send-approval__message {
2067
+ background: var(--eth-color-layer-01);
2068
+ border: 1px solid var(--eth-color-border-subtle);
2069
+ display: grid;
2070
+ min-width: 0;
2071
+ }
2072
+
2073
+ .eth-inbox-send-approval__message-header {
2074
+ align-items: flex-start;
2075
+ background: var(--eth-color-layer-02);
2076
+ border-block-end: 1px solid var(--eth-color-border-subtle);
2077
+ display: flex;
2078
+ gap: var(--eth-space-md);
2079
+ justify-content: space-between;
2080
+ padding: var(--eth-space-md);
2081
+ }
2082
+
2083
+ .eth-inbox-send-approval__message-header h4,
2084
+ .eth-inbox-send-approval__message-header p,
2085
+ .eth-inbox-send-approval__message-body p {
2086
+ margin: 0;
2087
+ }
2088
+
2089
+ .eth-inbox-send-approval__message-header h4 {
2090
+ font-size: calc(1rem * var(--eth-text-scale, 1));
2091
+ font-weight: 600;
2092
+ line-height: 1.375;
2093
+ }
2094
+
2095
+ .eth-inbox-send-approval__message-header p {
2096
+ color: var(--eth-color-text-secondary);
2097
+ margin-block-start: var(--eth-space-xs);
2098
+ }
2099
+
2100
+ .eth-inbox-send-approval__meta {
2101
+ display: grid;
2102
+ margin: 0;
2103
+ }
2104
+
2105
+ .eth-inbox-send-approval__meta > div {
2106
+ border-bottom: 1px solid var(--eth-color-border-subtle);
2107
+ display: grid;
2108
+ gap: var(--eth-space-sm);
2109
+ grid-template-columns: minmax(7rem, 10rem) minmax(0, 1fr);
2110
+ padding: var(--eth-space-sm);
2111
+ }
2112
+
2113
+ .eth-inbox-send-approval__meta > div:last-child {
2114
+ border-bottom: 0;
2115
+ }
2116
+
2117
+ .eth-inbox-send-approval__meta dt {
2118
+ color: var(--eth-color-text-secondary);
2119
+ font-weight: 600;
2120
+ }
2121
+
2122
+ .eth-inbox-send-approval__meta dd {
2123
+ margin: 0;
2124
+ min-width: 0;
2125
+ overflow-wrap: anywhere;
2126
+ }
2127
+
2128
+ .eth-inbox-send-approval__message-body {
2129
+ border-block-start: 1px solid var(--eth-color-border-subtle);
2130
+ display: grid;
2131
+ gap: var(--eth-space-sm);
2132
+ line-height: 1.5;
2133
+ min-block-size: 7rem;
2134
+ padding: var(--eth-space-md);
2135
+ white-space: pre-wrap;
2136
+ }
2137
+
2138
+ .eth-inbox-send-approval__message-body span {
2139
+ color: var(--eth-color-text-secondary);
2140
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
2141
+ font-weight: 600;
2142
+ line-height: 1.333;
2143
+ }
2144
+
2145
+ .eth-inbox-send-approval__decision {
2146
+ display: grid;
2147
+ gap: var(--eth-space-sm);
2148
+ }
2149
+
2150
+ .eth-inbox-send-approval__decision .cds--form-item,
2151
+ .eth-inbox-send-approval__decision .cds--text-area__wrapper {
2152
+ max-inline-size: none;
2153
+ }
2154
+
2155
+ .eth-inbox-send-approval__decision .cds--text-area {
2156
+ min-block-size: 6rem;
2157
+ }
2158
+
2159
+ .eth-inbox-send-approval__actions {
2160
+ border-block-start: 1px solid var(--eth-color-border-subtle);
2161
+ justify-content: flex-end;
2162
+ padding-block-start: var(--eth-space-lg);
2163
+ }
2164
+
2165
+ .eth-inbox-agent-draft {
2166
+ grid-template-columns: minmax(0, 1fr);
2167
+ max-inline-size: 58rem;
2168
+ }
2169
+
2170
+ .eth-inbox-agent-draft > .eth-panel__body {
2171
+ display: grid;
2172
+ gap: var(--eth-space-lg);
2173
+ }
2174
+
2175
+ .eth-inbox-agent-draft .eth-panel__header {
2176
+ border-block-end: 1px solid var(--eth-color-border-subtle);
2177
+ padding-block-end: var(--eth-space-md);
2178
+ }
2179
+
2180
+ .eth-inbox-agent-draft__content {
2181
+ display: grid;
2182
+ gap: var(--eth-space-lg);
2183
+ }
2184
+
2185
+ .eth-inbox-agent-draft__status {
2186
+ align-items: center;
2187
+ color: var(--eth-color-text-secondary);
2188
+ display: flex;
2189
+ flex-wrap: wrap;
2190
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
2191
+ gap: var(--eth-space-sm);
2192
+ line-height: 1.2857;
2193
+ }
2194
+
2195
+ .eth-inbox-agent-draft__status time {
2196
+ color: var(--eth-color-text-secondary);
2197
+ }
2198
+
2199
+ .eth-inbox-agent-draft__meta {
2200
+ background: var(--eth-color-layer-01);
2201
+ border: 1px solid var(--eth-color-border-subtle);
2202
+ display: grid;
2203
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2204
+ margin: 0;
2205
+ }
2206
+
2207
+ .eth-inbox-agent-draft__meta > div {
2208
+ display: grid;
2209
+ gap: var(--eth-space-xs);
2210
+ min-width: 0;
2211
+ padding: var(--eth-space-sm) var(--eth-space-md);
2212
+ }
2213
+
2214
+ .eth-inbox-agent-draft__meta > div:not(:last-child) {
2215
+ border-inline-end: 1px solid var(--eth-color-border-subtle);
2216
+ }
2217
+
2218
+ .eth-inbox-agent-draft__meta dt,
2219
+ .eth-inbox-agent-draft__section-header,
2220
+ .eth-inbox-agent-draft__rationale > span,
2221
+ .eth-inbox-agent-draft__evidence > span {
2222
+ color: var(--eth-color-text-secondary);
2223
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
2224
+ font-weight: 600;
2225
+ line-height: 1.333;
2226
+ }
2227
+
2228
+ .eth-inbox-agent-draft__meta dd {
2229
+ color: var(--eth-color-text-primary);
2230
+ margin: 0;
2231
+ min-width: 0;
2232
+ overflow: hidden;
2233
+ text-overflow: ellipsis;
2234
+ white-space: nowrap;
2235
+ }
2236
+
2237
+ .eth-inbox-agent-draft__section,
2238
+ .eth-inbox-agent-draft__evidence {
2239
+ display: grid;
2240
+ gap: var(--eth-space-sm);
2241
+ }
2242
+
2243
+ .eth-inbox-agent-draft__section-header {
2244
+ align-items: center;
2245
+ display: flex;
2246
+ justify-content: space-between;
2247
+ }
2248
+
2249
+ .eth-inbox-agent-draft__body {
2250
+ background: var(--eth-color-layer-02);
2251
+ border: 1px solid var(--eth-color-border-subtle);
2252
+ border-inline-start: 4px solid var(--eth-color-interactive-primary);
2253
+ color: var(--eth-color-text-primary);
2254
+ line-height: 1.5;
2255
+ padding: var(--eth-space-md);
2256
+ white-space: pre-wrap;
2257
+ }
2258
+
2259
+ .eth-inbox-agent-draft__rationale {
2260
+ background: var(--eth-color-layer-02);
2261
+ border: 1px solid var(--eth-color-border-subtle);
2262
+ display: grid;
2263
+ gap: var(--eth-space-xs);
2264
+ padding: var(--eth-space-md);
2265
+ }
2266
+
2267
+ .eth-inbox-agent-draft__rationale-body {
2268
+ color: var(--eth-color-text-primary);
2269
+ line-height: 1.5;
2270
+ margin: 0;
2271
+ }
2272
+
2273
+ .eth-inbox-agent-draft__rationale-body > :first-child {
2274
+ margin-block-start: 0;
2275
+ }
2276
+
2277
+ .eth-inbox-agent-draft__rationale-body > :last-child {
2278
+ margin-block-end: 0;
2279
+ }
2280
+
2281
+ .eth-inbox-agent-draft__evidence-list a {
2282
+ text-decoration: none;
2283
+ }
2284
+
2285
+ .eth-inbox-agent-draft__evidence-list a:focus-visible {
2286
+ outline: 2px solid var(--eth-color-focus);
2287
+ outline-offset: 2px;
2288
+ }
2289
+
2290
+ .eth-inbox-agent-draft__empty {
2291
+ background: var(--eth-color-layer-02);
2292
+ border: 1px dashed var(--eth-color-border-subtle);
2293
+ display: grid;
2294
+ gap: var(--eth-space-xs);
2295
+ padding: var(--eth-space-lg);
2296
+ }
2297
+
2298
+ .eth-inbox-agent-draft__empty strong {
2299
+ color: var(--eth-color-text-primary);
2300
+ }
2301
+
2302
+ .eth-inbox-agent-draft__empty p {
2303
+ color: var(--eth-color-text-secondary);
2304
+ margin: 0;
2305
+ }
2306
+
2307
+ .eth-inbox-agent-draft__actions {
2308
+ border-block-start: 1px solid var(--eth-color-border-subtle);
2309
+ justify-content: flex-end;
2310
+ padding-block-start: var(--eth-space-lg);
2311
+ }
2312
+
2313
+ .eth-inbox-thread-summary p {
2314
+ margin: 0;
2315
+ }
2316
+
2317
+ @media (width <= 72rem) {
2318
+ .eth-inbox-shell__layout {
2319
+ grid-template-columns: minmax(8rem, 0.6fr) minmax(15rem, 1fr) minmax(22rem, 2fr);
2320
+ }
2321
+
2322
+ .eth-inbox-shell__inspector {
2323
+ border-top: 1px solid var(--eth-color-border-subtle);
2324
+ grid-column: 1 / -1;
2325
+ }
2326
+ }
2327
+
2328
+ @container (inline-size <= 72rem) {
2329
+ .eth-inbox-shell__layout {
2330
+ grid-template-columns: minmax(8rem, 0.6fr) minmax(15rem, 1fr) minmax(22rem, 2fr);
2331
+ }
2332
+
2333
+ .eth-inbox-shell__inspector {
2334
+ border-top: 1px solid var(--eth-color-border-subtle);
2335
+ grid-column: 1 / -1;
2336
+ }
2337
+ }
2338
+
2339
+ @container (inline-size <= 54rem) {
2340
+ .eth-inbox-shell__layout,
2341
+ .eth-inbox-shell__layout--has-inspector {
2342
+ grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr);
2343
+ }
2344
+
2345
+ .eth-inbox-shell__thread,
2346
+ .eth-inbox-shell__inspector {
2347
+ border-top: 1px solid var(--eth-color-border-subtle);
2348
+ grid-column: 1 / -1;
2349
+ }
2350
+ }
2351
+
2352
+ @container (inline-size <= 42rem) {
2353
+ .eth-inbox-shell__layout,
2354
+ .eth-inbox-shell__layout--has-inspector {
2355
+ grid-template-columns: 1fr;
2356
+ }
2357
+
2358
+ .eth-inbox-shell__folders,
2359
+ .eth-inbox-shell__list,
2360
+ .eth-inbox-shell__thread {
2361
+ border-block-end: 1px solid var(--eth-color-border-subtle);
2362
+ border-inline-end: 0;
2363
+ }
2364
+ }
2365
+
2366
+ @media (width <= 48rem) {
2367
+ .eth-inbox-shell__layout,
2368
+ .eth-inbox-label-manager__row,
2369
+ .eth-inbox-label-manager__create,
2370
+ .eth-inbox-recipient-picker__selected,
2371
+ .eth-inbox-recipient-picker__manual,
2372
+ .eth-inbox-recipient-picker__suggestions button,
2373
+ .eth-inbox-rules__item,
2374
+ .eth-inbox-rules__definition,
2375
+ .eth-inbox-message-search,
2376
+ .eth-inbox-search,
2377
+ .eth-inbox-composer__field.eth-form-field,
2378
+ .eth-inbox-attachments__tile,
2379
+ .eth-inbox-agent-draft__meta,
2380
+ .eth-inbox-send-approval__meta > div {
2381
+ grid-template-columns: 1fr;
2382
+ }
2383
+
2384
+ .eth-inbox-composer {
2385
+ inline-size: 100%;
2386
+ }
2387
+
2388
+ .eth-inbox-recipient-picker__selected,
2389
+ .eth-inbox-recipient-picker__manual,
2390
+ .eth-inbox-recipient-picker__suggestions button {
2391
+ gap: var(--eth-space-xs);
2392
+ padding-inline: var(--eth-space-md);
2393
+ }
2394
+
2395
+ .eth-inbox-recipient-picker__manual {
2396
+ align-items: stretch;
2397
+ }
2398
+
2399
+ .eth-inbox-recipient-picker__manual .eth-button {
2400
+ inline-size: 100%;
2401
+ max-inline-size: none;
2402
+ }
2403
+
2404
+ .eth-inbox-recipient-picker__suggestion-status {
2405
+ justify-self: start;
2406
+ }
2407
+
2408
+ .eth-inbox-composer__field.eth-form-field {
2409
+ align-items: stretch;
2410
+ gap: var(--eth-space-xs);
2411
+ }
2412
+
2413
+ .eth-inbox-search__results {
2414
+ border-block-start: 1px solid var(--eth-color-border-subtle);
2415
+ border-inline-start: 0;
2416
+ justify-content: space-between;
2417
+ }
2418
+
2419
+ .eth-inbox-composer__footer {
2420
+ align-items: stretch;
2421
+ flex-direction: column;
2422
+ }
2423
+
2424
+ .eth-inbox-composer__actions {
2425
+ margin-inline-start: 0;
2426
+ }
2427
+
2428
+ .eth-inbox-composer__actions .eth-button {
2429
+ inline-size: 100%;
2430
+ max-inline-size: none;
2431
+ }
2432
+
2433
+ .eth-inbox-label-manager__table-head {
2434
+ display: none;
2435
+ }
2436
+
2437
+ .eth-inbox-label-manager__row {
2438
+ align-items: start;
2439
+ }
2440
+
2441
+ .eth-inbox-label-manager__count-cell,
2442
+ .eth-inbox-label-manager__actions {
2443
+ justify-content: flex-start;
2444
+ }
2445
+
2446
+ .eth-inbox-agent-draft__meta > div:not(:last-child) {
2447
+ border-block-end: 1px solid var(--eth-color-border-subtle);
2448
+ border-inline-end: 0;
2449
+ }
2450
+
2451
+ .eth-inbox-rules__definition > div:not(:last-child) {
2452
+ border-block-end: 1px solid var(--eth-color-border-subtle);
2453
+ border-inline-end: 0;
2454
+ }
2455
+
2456
+ .eth-inbox-rules__controls {
2457
+ justify-content: flex-start;
2458
+ min-inline-size: 0;
2459
+ }
2460
+
2461
+ .eth-inbox-send-approval__status,
2462
+ .eth-inbox-send-approval__actions,
2463
+ .eth-inbox-thread__header {
2464
+ align-items: stretch;
2465
+ flex-direction: column;
2466
+ }
2467
+
2468
+ .eth-inbox-thread__actions {
2469
+ justify-content: flex-start;
2470
+ margin-inline-start: 0;
2471
+ }
2472
+
2473
+ .eth-inbox-thread__actions .eth-button {
2474
+ inline-size: 100%;
2475
+ max-inline-size: none;
2476
+ }
2477
+
2478
+ .eth-inbox-message-preview__header {
2479
+ align-items: flex-start;
2480
+ flex-direction: column;
2481
+ }
2482
+
2483
+ .eth-inbox-attachments__tile {
2484
+ align-items: start;
2485
+ grid-template-columns: auto minmax(0, 1fr);
2486
+ }
2487
+
2488
+ .eth-inbox-attachments__actions {
2489
+ grid-column: 2;
2490
+ justify-content: flex-start;
2491
+ }
2492
+
2493
+ .eth-inbox-send-approval__actions .eth-button {
2494
+ inline-size: 100%;
2495
+ max-inline-size: none;
2496
+ }
2497
+
2498
+ .eth-inbox-message-preview {
2499
+ inline-size: 100%;
2500
+ padding: var(--eth-space-md);
2501
+ }
2502
+
2503
+ .eth-inbox-message-preview__header {
2504
+ display: grid;
2505
+ }
2506
+
2507
+ .eth-inbox-message-preview__header time {
2508
+ justify-self: start;
2509
+ padding-block-start: 0;
2510
+ }
2511
+
2512
+ .eth-inbox-message-preview__recipients {
2513
+ align-items: start;
2514
+ display: grid;
2515
+ }
2516
+
2517
+ .eth-inbox-shell__folders,
2518
+ .eth-inbox-shell__list,
2519
+ .eth-inbox-shell__thread {
2520
+ border-block-end: 1px solid var(--eth-color-border-subtle);
2521
+ border-inline-end: 0;
2522
+ }
2523
+ }