@lijinmei-810/dev-inspector 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.
package/dist/index.css ADDED
@@ -0,0 +1,2295 @@
1
+ /* src/dev-inspector.css */
2
+ .di-trigger {
3
+ position: fixed;
4
+ right: 16px;
5
+ bottom: 24px;
6
+ z-index: 99999;
7
+ width: 48px;
8
+ height: 48px;
9
+ border-radius: 50%;
10
+ border: none;
11
+ background: #7c3aed;
12
+ color: #fff;
13
+ font-size: 11px;
14
+ font-weight: 700;
15
+ font-family:
16
+ "PingFang SC",
17
+ system-ui,
18
+ sans-serif;
19
+ cursor: pointer;
20
+ box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
21
+ transition: background 0.15s, box-shadow 0.15s;
22
+ }
23
+ .di-trigger--on {
24
+ background: #5b21b6;
25
+ box-shadow: 0 4px 16px rgba(91, 33, 182, 0.45);
26
+ }
27
+ .di-trigger:hover {
28
+ box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
29
+ }
30
+ .di-dl-btn {
31
+ position: fixed;
32
+ right: 72px;
33
+ bottom: 24px;
34
+ z-index: 99999;
35
+ width: 48px;
36
+ height: 48px;
37
+ border-radius: 50%;
38
+ border: none;
39
+ background: #1a1a1a;
40
+ color: #fff;
41
+ font-size: 11px;
42
+ font-weight: 700;
43
+ font-family:
44
+ "PingFang SC",
45
+ system-ui,
46
+ sans-serif;
47
+ cursor: pointer;
48
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
49
+ transition: background 0.15s, box-shadow 0.15s;
50
+ }
51
+ .di-dl-btn:hover {
52
+ background: #333;
53
+ box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
54
+ }
55
+ .di-dl-modal {
56
+ position: fixed;
57
+ right: 72px;
58
+ bottom: 80px;
59
+ z-index: 99999;
60
+ width: 200px;
61
+ background: #fff;
62
+ border-radius: 12px;
63
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
64
+ padding: 16px;
65
+ display: flex;
66
+ flex-direction: column;
67
+ gap: 10px;
68
+ font-family:
69
+ "PingFang SC",
70
+ system-ui,
71
+ sans-serif;
72
+ }
73
+ .di-dl-title {
74
+ font-size: 13px;
75
+ font-weight: 700;
76
+ color: #111;
77
+ }
78
+ .di-dl-row {
79
+ display: flex;
80
+ align-items: center;
81
+ justify-content: space-between;
82
+ gap: 8px;
83
+ font-size: 13px;
84
+ color: #333;
85
+ }
86
+ .di-dl-check-label {
87
+ display: flex;
88
+ align-items: center;
89
+ gap: 8px;
90
+ cursor: pointer;
91
+ }
92
+ .di-dl-row input[type=checkbox] {
93
+ accent-color: #1a1a1a;
94
+ cursor: pointer;
95
+ }
96
+ .di-dl-detail-btn {
97
+ background: none;
98
+ border: none;
99
+ font-size: 11px;
100
+ color: #888;
101
+ cursor: pointer;
102
+ padding: 0;
103
+ white-space: nowrap;
104
+ text-decoration: underline;
105
+ }
106
+ .di-dl-detail-btn:hover {
107
+ color: #333;
108
+ }
109
+ .di-dl-file-list {
110
+ margin: -4px 0 0 0;
111
+ padding: 8px 10px;
112
+ background: #f5f5f5;
113
+ border-radius: 6px;
114
+ list-style: none;
115
+ display: flex;
116
+ flex-direction: column;
117
+ gap: 6px;
118
+ }
119
+ .di-dl-file-list li {
120
+ display: flex;
121
+ flex-direction: column;
122
+ gap: 1px;
123
+ }
124
+ .di-dl-file-name {
125
+ font-size: 11px;
126
+ font-weight: 600;
127
+ color: #222;
128
+ font-family: "SF Mono", monospace;
129
+ }
130
+ .di-dl-file-desc {
131
+ font-size: 10px;
132
+ color: #888;
133
+ line-height: 1.4;
134
+ }
135
+ .di-dl-confirm {
136
+ margin-top: 4px;
137
+ padding: 7px 0;
138
+ background: #1a1a1a;
139
+ color: #fff;
140
+ border: none;
141
+ border-radius: 8px;
142
+ font-size: 13px;
143
+ font-weight: 600;
144
+ cursor: pointer;
145
+ transition: background 0.15s;
146
+ }
147
+ .di-dl-confirm:hover:not(:disabled) {
148
+ background: #333;
149
+ }
150
+ .di-dl-confirm:disabled {
151
+ background: #ccc;
152
+ cursor: not-allowed;
153
+ }
154
+ .di-dl-status {
155
+ display: flex;
156
+ align-items: center;
157
+ gap: 8px;
158
+ font-size: 12px;
159
+ color: #555;
160
+ padding: 4px 0;
161
+ }
162
+ .di-dl-status--error {
163
+ color: #dc2626;
164
+ }
165
+ .di-dl-spinner {
166
+ width: 12px;
167
+ height: 12px;
168
+ border: 2px solid #ddd;
169
+ border-top-color: #1a1a1a;
170
+ border-radius: 50%;
171
+ animation: di-spin 0.7s linear infinite;
172
+ flex-shrink: 0;
173
+ }
174
+ @keyframes di-spin {
175
+ to {
176
+ transform: rotate(360deg);
177
+ }
178
+ }
179
+ .di-dl-done {
180
+ display: flex;
181
+ flex-direction: column;
182
+ gap: 6px;
183
+ padding: 4px 0;
184
+ }
185
+ .di-dl-done-check {
186
+ font-size: 13px;
187
+ font-weight: 600;
188
+ color: #1a1a1a;
189
+ }
190
+ .di-dl-done-path {
191
+ font-size: 11px;
192
+ color: #888;
193
+ font-family: "SF Mono", monospace;
194
+ word-break: break-all;
195
+ }
196
+ .di-dl-reveal-btn {
197
+ margin-top: 2px;
198
+ padding: 6px 0;
199
+ background: #f0f0f0;
200
+ border: none;
201
+ border-radius: 7px;
202
+ font-size: 12px;
203
+ font-weight: 500;
204
+ color: #333;
205
+ cursor: pointer;
206
+ transition: background 0.15s;
207
+ }
208
+ .di-dl-reveal-btn:hover {
209
+ background: #e0e0e0;
210
+ }
211
+ .di-hover {
212
+ box-shadow: inset 0 0 0 2px rgba(124, 58, 237, 0.5) !important;
213
+ }
214
+ .di-selected {
215
+ box-shadow: inset 0 0 0 2px #7c3aed !important;
216
+ }
217
+ .di-panel .di-hover,
218
+ .di-panel .di-selected,
219
+ .di-trigger.di-hover {
220
+ box-shadow: none !important;
221
+ }
222
+ .di-label {
223
+ position: fixed;
224
+ z-index: 99998;
225
+ transform: translateX(-50%);
226
+ padding: 5px 12px;
227
+ border-radius: 20px;
228
+ background: #7c3aed;
229
+ color: #fff;
230
+ font-family:
231
+ "PingFang SC",
232
+ system-ui,
233
+ sans-serif;
234
+ font-size: 12px;
235
+ font-weight: 600;
236
+ white-space: nowrap;
237
+ pointer-events: none;
238
+ box-shadow: 0 2px 8px rgba(124, 58, 237, 0.35);
239
+ }
240
+ .di-label::after {
241
+ content: "";
242
+ position: absolute;
243
+ bottom: -5px;
244
+ left: 50%;
245
+ transform: translateX(-50%);
246
+ width: 2px;
247
+ height: 6px;
248
+ background: #7c3aed;
249
+ border-radius: 1px;
250
+ }
251
+ .di-panel {
252
+ position: fixed;
253
+ z-index: 99997;
254
+ width: 380px;
255
+ max-height: 90vh;
256
+ height: auto;
257
+ display: flex;
258
+ flex-direction: column;
259
+ overflow: hidden;
260
+ background: #fff;
261
+ border: 1px solid #e5e7eb;
262
+ border-radius: 16px;
263
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
264
+ font-family:
265
+ "PingFang SC",
266
+ system-ui,
267
+ sans-serif;
268
+ overflow: hidden;
269
+ }
270
+ .di-panel--picking .di-body * {
271
+ cursor: crosshair !important;
272
+ }
273
+ .di-head {
274
+ display: flex;
275
+ align-items: center;
276
+ justify-content: space-between;
277
+ padding: 10px 14px 8px;
278
+ border-bottom: 1px solid #f3f4f6;
279
+ flex-shrink: 0;
280
+ cursor: grab;
281
+ user-select: none;
282
+ }
283
+ .di-head:active {
284
+ cursor: grabbing;
285
+ }
286
+ .di-head button {
287
+ cursor: pointer;
288
+ }
289
+ .di-head-left {
290
+ display: flex;
291
+ align-items: center;
292
+ gap: 8px;
293
+ }
294
+ .di-layer-btn {
295
+ display: inline-flex;
296
+ align-items: center;
297
+ justify-content: center;
298
+ width: 22px;
299
+ height: 22px;
300
+ border: 1px solid #e5e7eb;
301
+ border-radius: 6px;
302
+ background: #f9fafb;
303
+ color: #374151;
304
+ font-size: 12px;
305
+ cursor: pointer;
306
+ transition: background 0.12s, color 0.12s;
307
+ line-height: 1;
308
+ }
309
+ .di-layer-btn:hover:not(:disabled) {
310
+ background: #111;
311
+ color: #fff;
312
+ border-color: #111;
313
+ }
314
+ .di-layer-btn:disabled {
315
+ opacity: 0.3;
316
+ cursor: not-allowed;
317
+ }
318
+ .di-head-right {
319
+ display: flex;
320
+ align-items: center;
321
+ gap: 8px;
322
+ }
323
+ .di-title {
324
+ font-size: 15px;
325
+ font-weight: 700;
326
+ color: #111827;
327
+ }
328
+ .di-badge-dev {
329
+ padding: 2px 8px;
330
+ border-radius: 6px;
331
+ background: rgba(124, 58, 237, 0.1);
332
+ color: #7c3aed;
333
+ font-size: 11px;
334
+ font-weight: 600;
335
+ }
336
+ .di-spec-link {
337
+ background: none;
338
+ border: none;
339
+ color: #7c3aed;
340
+ font-size: 12px;
341
+ font-family: inherit;
342
+ cursor: pointer;
343
+ padding: 0;
344
+ }
345
+ .di-spec-link:hover {
346
+ text-decoration: underline;
347
+ }
348
+ .di-close {
349
+ width: 24px;
350
+ height: 24px;
351
+ border-radius: 6px;
352
+ border: 1px solid #e5e7eb;
353
+ background: #fff;
354
+ color: #6b7280;
355
+ font-size: 16px;
356
+ line-height: 1;
357
+ cursor: pointer;
358
+ display: flex;
359
+ align-items: center;
360
+ justify-content: center;
361
+ padding: 0;
362
+ }
363
+ .di-close:hover {
364
+ background: #f9fafb;
365
+ }
366
+ .di-body {
367
+ overflow-y: auto;
368
+ flex: 1;
369
+ padding: 2px 0 4px;
370
+ }
371
+ .di-body--readonly {
372
+ pointer-events: none;
373
+ opacity: 0.72;
374
+ user-select: none;
375
+ }
376
+ .di-section {
377
+ padding: 8px 14px;
378
+ border-bottom: 1px solid #f3f4f6;
379
+ }
380
+ .di-section:last-child {
381
+ border-bottom: none;
382
+ }
383
+ .di-section-title {
384
+ font-size: 12px;
385
+ font-weight: 700;
386
+ color: #111827;
387
+ margin-bottom: 6px;
388
+ }
389
+ .di-section-title-row {
390
+ display: flex;
391
+ align-items: center;
392
+ gap: 6px;
393
+ margin-bottom: 6px;
394
+ }
395
+ .di-section-title-row .di-section-title {
396
+ margin-bottom: 0;
397
+ }
398
+ .di-help-icon {
399
+ width: 18px;
400
+ height: 18px;
401
+ padding: 0;
402
+ border: 1px solid #e5e7eb;
403
+ border-radius: 999px;
404
+ background: #fff;
405
+ color: #8190a5;
406
+ display: inline-flex;
407
+ align-items: center;
408
+ justify-content: center;
409
+ cursor: pointer;
410
+ transition: all 0.12s ease;
411
+ }
412
+ .di-help-icon:hover {
413
+ border-color: #c4b5fd;
414
+ color: #7c3aed;
415
+ background: #faf5ff;
416
+ }
417
+ .di-help-icon--on {
418
+ border-color: #c4b5fd;
419
+ color: #7c3aed;
420
+ background: #faf5ff;
421
+ }
422
+ .di-help-popover {
423
+ margin-bottom: 8px;
424
+ padding: 8px 10px;
425
+ border: 1px solid #ede9fe;
426
+ border-radius: 8px;
427
+ background: #faf5ff;
428
+ font-size: 11px;
429
+ line-height: 1.5;
430
+ color: #6b7280;
431
+ }
432
+ .di-color-row {
433
+ position: relative;
434
+ display: flex;
435
+ align-items: center;
436
+ gap: 8px;
437
+ margin-bottom: 8px;
438
+ }
439
+ .di-color-row:last-child {
440
+ margin-bottom: 0;
441
+ }
442
+ .di-attr-label {
443
+ width: 44px;
444
+ flex-shrink: 0;
445
+ font-size: 12px;
446
+ color: #6b7280;
447
+ }
448
+ .di-swatch-btn {
449
+ width: 28px;
450
+ height: 28px;
451
+ border-radius: 6px;
452
+ border: 1px solid rgba(0, 0, 0, 0.08);
453
+ flex-shrink: 0;
454
+ cursor: pointer;
455
+ display: flex;
456
+ align-items: center;
457
+ justify-content: center;
458
+ transition: transform 0.12s;
459
+ }
460
+ .di-swatch-btn:hover {
461
+ transform: scale(1.06);
462
+ }
463
+ .di-color-info {
464
+ flex: 1;
465
+ display: flex;
466
+ flex-direction: column;
467
+ gap: 1px;
468
+ min-width: 0;
469
+ overflow: hidden;
470
+ }
471
+ .di-token-name {
472
+ font-size: 11px;
473
+ font-weight: 600;
474
+ color: #7c3aed;
475
+ white-space: nowrap;
476
+ overflow: hidden;
477
+ text-overflow: ellipsis;
478
+ }
479
+ .di-token-name--plain {
480
+ font-size: 11px;
481
+ font-weight: 500;
482
+ color: #374151;
483
+ font-family: monospace;
484
+ white-space: nowrap;
485
+ overflow: hidden;
486
+ text-overflow: ellipsis;
487
+ }
488
+ .di-hex {
489
+ font-size: 10px;
490
+ color: #9ca3af;
491
+ font-family: monospace;
492
+ white-space: nowrap;
493
+ overflow: hidden;
494
+ text-overflow: ellipsis;
495
+ }
496
+ .di-hex--main {
497
+ font-size: 13px;
498
+ color: #374151;
499
+ font-family: monospace;
500
+ }
501
+ .di-token-add {
502
+ display: inline-flex;
503
+ align-items: center;
504
+ padding: 3px 10px;
505
+ border-radius: 6px;
506
+ border: 1px dashed #d1d5db;
507
+ background: none;
508
+ color: #6b7280;
509
+ font-size: 12px;
510
+ font-family: inherit;
511
+ cursor: pointer;
512
+ transition: all 0.12s;
513
+ }
514
+ .di-token-add:hover {
515
+ border-color: #7c3aed;
516
+ color: #7c3aed;
517
+ }
518
+ .di-inline-input {
519
+ font-size: 12px;
520
+ font-family: monospace;
521
+ border: 1px solid #7c3aed;
522
+ border-radius: 5px;
523
+ padding: 2px 6px;
524
+ outline: none;
525
+ color: #111827;
526
+ width: 140px;
527
+ background: #faf5ff;
528
+ }
529
+ .di-inline-input--token {
530
+ background: #faf5ff;
531
+ }
532
+ .di-dropdown {
533
+ position: absolute;
534
+ top: calc(100% + 4px);
535
+ left: 54px;
536
+ z-index: 10;
537
+ width: 260px;
538
+ background: #fff;
539
+ border: 1px solid #e5e7eb;
540
+ border-radius: 10px;
541
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
542
+ overflow: hidden;
543
+ display: flex;
544
+ flex-direction: column;
545
+ max-height: 320px;
546
+ }
547
+ .di-dropdown-list {
548
+ overflow-y: auto;
549
+ flex: 1;
550
+ min-height: 0;
551
+ }
552
+ .di-dropdown-item {
553
+ display: flex;
554
+ align-items: center;
555
+ gap: 8px;
556
+ width: 100%;
557
+ padding: 8px 12px;
558
+ border: none;
559
+ background: none;
560
+ cursor: pointer;
561
+ text-align: left;
562
+ font-family: inherit;
563
+ transition: background 0.1s;
564
+ }
565
+ .di-dropdown-item:hover {
566
+ background: #f5f3ff;
567
+ }
568
+ .di-dropdown-swatch {
569
+ width: 20px;
570
+ height: 20px;
571
+ border-radius: 5px;
572
+ flex-shrink: 0;
573
+ }
574
+ .di-dropdown-token {
575
+ flex: 1;
576
+ font-size: 12px;
577
+ font-weight: 600;
578
+ color: #7c3aed;
579
+ white-space: nowrap;
580
+ overflow: hidden;
581
+ text-overflow: ellipsis;
582
+ }
583
+ .di-dropdown-hex {
584
+ font-size: 11px;
585
+ color: #9ca3af;
586
+ font-family: monospace;
587
+ flex-shrink: 0;
588
+ }
589
+ .di-dropdown-empty {
590
+ padding: 12px;
591
+ font-size: 12px;
592
+ color: #9ca3af;
593
+ text-align: center;
594
+ }
595
+ .di-dropdown-divider {
596
+ display: none;
597
+ }
598
+ .di-dropdown-custom {
599
+ display: flex;
600
+ align-items: center;
601
+ gap: 8px;
602
+ padding: 8px 12px;
603
+ flex-shrink: 0;
604
+ border-top: 1px solid #f3f4f6;
605
+ background: #fff;
606
+ }
607
+ .di-dropdown-custom-label {
608
+ font-size: 11px;
609
+ color: #6b7280;
610
+ flex-shrink: 0;
611
+ }
612
+ .di-dropdown-custom-input {
613
+ min-width: 0;
614
+ flex: 1;
615
+ height: 28px;
616
+ padding: 0 10px;
617
+ border: 1px solid #e5e7eb;
618
+ border-radius: 7px;
619
+ font-size: 12px;
620
+ color: #374151;
621
+ outline: none;
622
+ }
623
+ .di-dropdown-custom-input:focus {
624
+ border-color: #c4b5fd;
625
+ }
626
+ .di-dropdown-custom-apply {
627
+ height: 28px;
628
+ padding: 0 10px;
629
+ border: 1px solid #e5e7eb;
630
+ border-radius: 7px;
631
+ background: #fff;
632
+ color: #7c3aed;
633
+ font-size: 11px;
634
+ font-weight: 600;
635
+ cursor: pointer;
636
+ transition: all 0.12s ease;
637
+ }
638
+ .di-dropdown-custom-apply:hover {
639
+ border-color: #c4b5fd;
640
+ background: #faf5ff;
641
+ }
642
+ .di-color-picker {
643
+ width: 28px;
644
+ height: 28px;
645
+ border: 1px solid #e5e7eb;
646
+ border-radius: 6px;
647
+ padding: 1px;
648
+ cursor: pointer;
649
+ background: none;
650
+ flex-shrink: 0;
651
+ }
652
+ .di-note--sm {
653
+ min-height: 52px;
654
+ height: auto;
655
+ margin-bottom: 8px;
656
+ overflow: hidden;
657
+ field-sizing: content;
658
+ }
659
+ .di-empty {
660
+ font-size: 12px;
661
+ color: #9ca3af;
662
+ padding: 4px 0;
663
+ line-height: 1.5;
664
+ }
665
+ .di-changes-list {
666
+ margin: 0;
667
+ padding: 0 0 0 18px;
668
+ display: flex;
669
+ flex-direction: column;
670
+ gap: 5px;
671
+ }
672
+ .di-changes-list li {
673
+ font-size: 11px;
674
+ color: #374151;
675
+ line-height: 1.5;
676
+ font-family: monospace;
677
+ }
678
+ .di-typo-row {
679
+ display: grid;
680
+ grid-template-columns: auto 1fr;
681
+ gap: 6px;
682
+ margin-bottom: 4px;
683
+ }
684
+ .di-typo-card {
685
+ border: 1px solid #e5e7eb;
686
+ border-radius: 8px;
687
+ padding: 6px 8px 8px;
688
+ }
689
+ .di-typo-card--wide {
690
+ }
691
+ .di-weight-stepper {
692
+ display: flex;
693
+ align-items: center;
694
+ gap: 2px;
695
+ margin-top: 4px;
696
+ }
697
+ .di-weight-visible {
698
+ display: flex;
699
+ gap: 2px;
700
+ flex: 1;
701
+ }
702
+ .di-weight-btn {
703
+ flex: 1;
704
+ padding: 3px 0;
705
+ border-radius: 5px;
706
+ border: 1px solid #e5e7eb;
707
+ background: #fff;
708
+ color: #374151;
709
+ font-size: 11px;
710
+ font-family: inherit;
711
+ cursor: pointer;
712
+ transition: all 0.1s;
713
+ }
714
+ .di-weight-btn:hover {
715
+ border-color: #c4b5fd;
716
+ background: #faf5ff;
717
+ }
718
+ .di-weight-btn--on {
719
+ background: #7c3aed;
720
+ border-color: #7c3aed;
721
+ color: #fff;
722
+ }
723
+ .di-weight-btn--on:hover {
724
+ background: #6d28d9;
725
+ border-color: #6d28d9;
726
+ }
727
+ .di-boxing {
728
+ position: relative;
729
+ width: 100%;
730
+ max-width: 100px;
731
+ height: auto;
732
+ margin: 8px auto 0;
733
+ border-radius: 7px;
734
+ flex-shrink: 0;
735
+ box-sizing: border-box;
736
+ display: grid;
737
+ grid-template-columns: 30px 26px 30px;
738
+ grid-template-rows: 28px 28px 28px;
739
+ gap: 2px;
740
+ align-items: center;
741
+ justify-content: center;
742
+ justify-items: center;
743
+ }
744
+ .di-box-center {
745
+ position: static;
746
+ grid-column: 2;
747
+ grid-row: 2;
748
+ transform: none;
749
+ }
750
+ .di-box-top {
751
+ position: static;
752
+ grid-column: 2;
753
+ grid-row: 1;
754
+ transform: none;
755
+ }
756
+ .di-box-bottom {
757
+ position: static;
758
+ grid-column: 2;
759
+ grid-row: 3;
760
+ transform: none;
761
+ }
762
+ .di-box-left {
763
+ position: static;
764
+ grid-column: 1;
765
+ grid-row: 2;
766
+ transform: none;
767
+ }
768
+ .di-box-right {
769
+ position: static;
770
+ grid-column: 3;
771
+ grid-row: 2;
772
+ transform: none;
773
+ }
774
+ .di-boxing--padding {
775
+ border: 2px solid rgba(124, 58, 237, 0.6);
776
+ background: rgba(124, 58, 237, 0.1);
777
+ }
778
+ .di-boxing-block {
779
+ width: 26px;
780
+ height: 26px;
781
+ background: rgba(124, 58, 237, 0.25);
782
+ border-radius: 5px;
783
+ flex-shrink: 0;
784
+ }
785
+ .di-boxing--margin .di-boxing-block {
786
+ outline: 1.5px solid rgba(124, 58, 237, 0.45);
787
+ }
788
+ .di-boxing--margin {
789
+ border: none;
790
+ background: transparent;
791
+ }
792
+ .di-side-combo--compact {
793
+ width: 30px;
794
+ }
795
+ .di-side-combo--compact .di-side-display {
796
+ width: 30px;
797
+ height: 28px;
798
+ border-radius: 7px;
799
+ padding: 2px 0;
800
+ overflow: hidden;
801
+ }
802
+ .di-side-combo--compact .di-side-display-label {
803
+ font-size: 11px;
804
+ line-height: 1.05;
805
+ }
806
+ .di-side-combo--compact .di-side-display-sub {
807
+ font-size: 9px;
808
+ line-height: 1.05;
809
+ }
810
+ .di-fourside {
811
+ display: flex;
812
+ flex-direction: column;
813
+ align-items: center;
814
+ gap: 3px;
815
+ margin-top: 6px;
816
+ }
817
+ .di-fourside-row {
818
+ display: flex;
819
+ justify-content: center;
820
+ }
821
+ .di-fourside-mid {
822
+ display: flex;
823
+ align-items: center;
824
+ gap: 4px;
825
+ }
826
+ .di-fourside-center {
827
+ flex-shrink: 0;
828
+ }
829
+ .di-side-combo {
830
+ position: relative;
831
+ width: 36px;
832
+ }
833
+ .di-side-combo--wide {
834
+ width: 100%;
835
+ }
836
+ .di-side-combo--wide .di-side-display {
837
+ width: 100%;
838
+ flex-direction: column;
839
+ gap: 0;
840
+ height: 28px;
841
+ }
842
+ .di-side-combo--wide .di-side-popup {
843
+ min-width: 100px;
844
+ }
845
+ .di-gap-input-row {
846
+ flex: 1;
847
+ display: grid;
848
+ grid-template-columns: 24px minmax(34px, 1fr) 24px;
849
+ align-items: center;
850
+ gap: 5px;
851
+ }
852
+ .di-gap-block {
853
+ width: 24px;
854
+ height: 24px;
855
+ background: rgba(124, 58, 237, 0.25);
856
+ border-radius: 5px;
857
+ outline: 1.5px solid rgba(124, 58, 237, 0.45);
858
+ flex-shrink: 0;
859
+ }
860
+ .di-side-display {
861
+ width: 36px;
862
+ height: 22px;
863
+ display: flex;
864
+ flex-direction: column;
865
+ align-items: center;
866
+ justify-content: center;
867
+ border: 1px solid #e5e7eb;
868
+ border-radius: 5px;
869
+ cursor: pointer;
870
+ background: #fff;
871
+ transition: border-color 0.1s;
872
+ gap: 0;
873
+ padding: 1px 0;
874
+ }
875
+ .di-side-display:hover {
876
+ border-color: #c4b5fd;
877
+ }
878
+ .di-side-display-label {
879
+ font-size: 10px;
880
+ font-weight: 600;
881
+ color: #374151;
882
+ line-height: 1.1;
883
+ font-family: monospace;
884
+ }
885
+ .di-side-display-sub {
886
+ font-size: 8px;
887
+ color: #9ca3af;
888
+ line-height: 1;
889
+ font-family: monospace;
890
+ }
891
+ .di-side-overlay {
892
+ position: fixed;
893
+ inset: 0;
894
+ z-index: 29;
895
+ }
896
+ .di-side-popup {
897
+ position: fixed;
898
+ z-index: 99999;
899
+ background: #fff;
900
+ border: 1px solid #e5e7eb;
901
+ border-radius: 8px;
902
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
903
+ overflow: hidden;
904
+ min-width: 90px;
905
+ }
906
+ .di-side-input-edit {
907
+ width: 100%;
908
+ padding: 5px 8px;
909
+ border: none;
910
+ border-bottom: 1px solid #f3f4f6;
911
+ font-size: 11px;
912
+ font-family: monospace;
913
+ outline: none;
914
+ color: #374151;
915
+ background: #faf5ff;
916
+ }
917
+ .di-side-steps {
918
+ display: flex;
919
+ flex-direction: column;
920
+ }
921
+ .di-side-step-item {
922
+ display: flex;
923
+ align-items: center;
924
+ justify-content: space-between;
925
+ gap: 6px;
926
+ padding: 4px 8px;
927
+ border: none;
928
+ background: none;
929
+ font-size: 11px;
930
+ color: #374151;
931
+ font-family: inherit;
932
+ cursor: pointer;
933
+ text-align: left;
934
+ }
935
+ .di-side-step-item:hover {
936
+ background: #f5f3ff;
937
+ color: #7c3aed;
938
+ }
939
+ .di-side-step-item--on {
940
+ color: #7c3aed;
941
+ font-weight: 700;
942
+ background: #f5f3ff;
943
+ }
944
+ .di-side-step-sub {
945
+ font-size: 9px;
946
+ color: #9ca3af;
947
+ }
948
+ .di-border-row {
949
+ display: grid;
950
+ grid-template-columns: repeat(3, 1fr);
951
+ gap: 8px;
952
+ }
953
+ .di-border-card {
954
+ display: flex;
955
+ flex-direction: column;
956
+ gap: 6px;
957
+ border: 1px solid #e5e7eb;
958
+ border-radius: 10px;
959
+ padding: 8px 10px 10px;
960
+ position: relative;
961
+ min-width: 0;
962
+ overflow: hidden;
963
+ }
964
+ .di-border-card-title {
965
+ font-size: 11px;
966
+ font-weight: 700;
967
+ color: #374151;
968
+ margin-bottom: 0;
969
+ }
970
+ .di-border-color-body {
971
+ display: flex;
972
+ flex-direction: row;
973
+ align-items: center;
974
+ gap: 8px;
975
+ margin-top: 0 !important;
976
+ }
977
+ .di-border-color-info {
978
+ min-width: 0;
979
+ overflow: hidden;
980
+ flex: 1;
981
+ display: flex;
982
+ flex-direction: column;
983
+ gap: 1px;
984
+ }
985
+ .di-border-styles {
986
+ display: grid;
987
+ grid-template-columns: 1fr 1fr;
988
+ gap: 4px;
989
+ margin-top: 6px;
990
+ }
991
+ .di-swatch-btn--empty {
992
+ background: repeating-conic-gradient(#e5e7eb 0% 25%, #fff 0% 50%) 0 0 / 8px 8px !important;
993
+ border: 1px solid #e5e7eb !important;
994
+ }
995
+ .di-border-style-single {
996
+ display: flex;
997
+ align-items: center;
998
+ gap: 6px;
999
+ width: 100%;
1000
+ padding: 5px 7px;
1001
+ border: 1px solid #e5e7eb;
1002
+ border-radius: 6px;
1003
+ background: #fff;
1004
+ cursor: pointer;
1005
+ font-family: inherit;
1006
+ transition: all 0.1s;
1007
+ margin-top: 0;
1008
+ }
1009
+ .di-border-style-single:hover {
1010
+ border-color: #c4b5fd;
1011
+ background: #faf5ff;
1012
+ }
1013
+ .di-border-style-label {
1014
+ font-size: 11px;
1015
+ font-weight: 600;
1016
+ color: #7c3aed;
1017
+ }
1018
+ .di-border-style-name {
1019
+ font-size: 10px;
1020
+ color: #111827;
1021
+ }
1022
+ .di-border-style-name--custom {
1023
+ font-size: 11px;
1024
+ font-weight: 500;
1025
+ color: #374151;
1026
+ }
1027
+ .di-border-style-drop {
1028
+ background: #fff;
1029
+ border: 1px solid #e5e7eb;
1030
+ border-radius: 8px;
1031
+ box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
1032
+ overflow: hidden;
1033
+ min-width: 100px;
1034
+ }
1035
+ .di-border-style-drop-item {
1036
+ display: flex;
1037
+ align-items: center;
1038
+ gap: 8px;
1039
+ width: 100%;
1040
+ padding: 6px 10px;
1041
+ border: none;
1042
+ background: none;
1043
+ font-family: inherit;
1044
+ cursor: pointer;
1045
+ }
1046
+ .di-border-style-drop-item:hover {
1047
+ background: #f5f3ff;
1048
+ }
1049
+ .di-border-style-drop-item--on {
1050
+ color: #7c3aed;
1051
+ font-weight: 700;
1052
+ background: #f5f3ff;
1053
+ }
1054
+ .di-border-style-btn {
1055
+ padding: 4px 0;
1056
+ border-radius: 6px;
1057
+ border: 1px solid #e5e7eb;
1058
+ background: #fff;
1059
+ color: #374151;
1060
+ font-size: 13px;
1061
+ cursor: pointer;
1062
+ transition: all 0.1s;
1063
+ }
1064
+ .di-border-style-btn:hover {
1065
+ border-color: #c4b5fd;
1066
+ background: #faf5ff;
1067
+ }
1068
+ .di-border-style-btn--on {
1069
+ background: #7c3aed;
1070
+ border-color: #7c3aed;
1071
+ color: #fff;
1072
+ }
1073
+ .di-border-style-btn--on:hover {
1074
+ background: #6d28d9;
1075
+ border-color: #6d28d9;
1076
+ }
1077
+ .di-dropdown--border {
1078
+ left: 0;
1079
+ width: 220px;
1080
+ }
1081
+ .di-spinner {
1082
+ display: flex;
1083
+ align-items: stretch;
1084
+ border: 1px solid #e5e7eb;
1085
+ border-radius: 6px;
1086
+ overflow: hidden;
1087
+ margin-top: 0;
1088
+ transition: border-color 0.1s;
1089
+ }
1090
+ .di-spinner:hover {
1091
+ border-color: #c4b5fd;
1092
+ }
1093
+ .di-spinner-val {
1094
+ flex: 1;
1095
+ padding: 5px 8px;
1096
+ font-size: 12px;
1097
+ color: #374151;
1098
+ font-family: monospace;
1099
+ white-space: nowrap;
1100
+ overflow: hidden;
1101
+ text-overflow: ellipsis;
1102
+ }
1103
+ .di-spinner-btns {
1104
+ display: flex;
1105
+ flex-direction: column;
1106
+ border-left: 1px solid #e5e7eb;
1107
+ flex-shrink: 0;
1108
+ }
1109
+ .di-spinner-up,
1110
+ .di-spinner-dn {
1111
+ width: 20px;
1112
+ flex: 1;
1113
+ border: none;
1114
+ background: #fff;
1115
+ cursor: pointer;
1116
+ display: flex;
1117
+ align-items: center;
1118
+ justify-content: center;
1119
+ color: #9ca3af;
1120
+ transition: background 0.1s, color 0.1s;
1121
+ padding: 0;
1122
+ }
1123
+ .di-spinner-up {
1124
+ border-bottom: 1px solid #e5e7eb;
1125
+ }
1126
+ .di-spinner-up:hover,
1127
+ .di-spinner-dn:hover {
1128
+ background: #f5f3ff;
1129
+ color: #7c3aed;
1130
+ }
1131
+ .di-spinner-up:disabled,
1132
+ .di-spinner-dn:disabled {
1133
+ color: #e5e7eb;
1134
+ cursor: default;
1135
+ }
1136
+ .di-custom-color-trigger {
1137
+ width: 22px;
1138
+ height: 22px;
1139
+ border-radius: 5px;
1140
+ border: 1px solid rgba(0, 0, 0, 0.1);
1141
+ cursor: pointer;
1142
+ flex-shrink: 0;
1143
+ transition: transform 0.1s;
1144
+ }
1145
+ .di-custom-color-trigger:hover {
1146
+ transform: scale(1.1);
1147
+ }
1148
+ .di-modal-overlay {
1149
+ position: fixed;
1150
+ inset: 0;
1151
+ z-index: 999999;
1152
+ background: rgba(0, 0, 0, 0.35);
1153
+ display: flex;
1154
+ align-items: center;
1155
+ justify-content: center;
1156
+ }
1157
+ .di-modal {
1158
+ width: 460px;
1159
+ max-width: calc(100vw - 32px);
1160
+ background: #fff;
1161
+ border-radius: 16px;
1162
+ box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
1163
+ overflow: hidden;
1164
+ font-family:
1165
+ "PingFang SC",
1166
+ system-ui,
1167
+ sans-serif;
1168
+ }
1169
+ .di-modal-header {
1170
+ display: flex;
1171
+ align-items: center;
1172
+ gap: 10px;
1173
+ padding: 16px 20px;
1174
+ border-bottom: 1px solid #f3f4f6;
1175
+ }
1176
+ .di-modal-swatch {
1177
+ width: 28px;
1178
+ height: 28px;
1179
+ border-radius: 6px;
1180
+ border: 1px solid rgba(0, 0, 0, 0.08);
1181
+ flex-shrink: 0;
1182
+ }
1183
+ .di-modal-hex {
1184
+ font-size: 13px;
1185
+ font-family: monospace;
1186
+ color: #374151;
1187
+ }
1188
+ .di-modal-body {
1189
+ padding: 16px 20px;
1190
+ display: flex;
1191
+ flex-direction: column;
1192
+ gap: 14px;
1193
+ }
1194
+ .di-modal-tabs {
1195
+ display: flex;
1196
+ gap: 6px;
1197
+ }
1198
+ .di-modal-tab {
1199
+ flex: 1;
1200
+ padding: 8px 0;
1201
+ border-radius: 8px;
1202
+ border: 1px solid #e5e7eb;
1203
+ background: #fff;
1204
+ font-size: 13px;
1205
+ font-family: inherit;
1206
+ cursor: pointer;
1207
+ color: #6b7280;
1208
+ }
1209
+ .di-modal-tab.--on {
1210
+ background: #7c3aed;
1211
+ border-color: #7c3aed;
1212
+ color: #fff;
1213
+ font-weight: 600;
1214
+ }
1215
+ .di-modal-field {
1216
+ display: flex;
1217
+ flex-direction: column;
1218
+ gap: 8px;
1219
+ }
1220
+ .di-modal-field-label {
1221
+ font-size: 12px;
1222
+ font-weight: 700;
1223
+ color: #374151;
1224
+ display: flex;
1225
+ align-items: center;
1226
+ gap: 6px;
1227
+ }
1228
+ .di-modal-auto-tag {
1229
+ font-size: 10px;
1230
+ font-weight: 500;
1231
+ color: #7c3aed;
1232
+ background: rgba(124, 58, 237, 0.08);
1233
+ padding: 1px 6px;
1234
+ border-radius: 4px;
1235
+ }
1236
+ .di-modal-opt-btn {
1237
+ padding: 5px 12px;
1238
+ border-radius: 6px;
1239
+ border: 1px solid #e5e7eb;
1240
+ background: #fff;
1241
+ font-size: 12px;
1242
+ font-family: inherit;
1243
+ cursor: pointer;
1244
+ color: #374151;
1245
+ transition: all 0.1s;
1246
+ }
1247
+ .di-modal-opt-btn:hover {
1248
+ border-color: #c4b5fd;
1249
+ color: #7c3aed;
1250
+ }
1251
+ .di-modal-opt-btn.--on {
1252
+ background: #7c3aed;
1253
+ border-color: #7c3aed;
1254
+ color: #fff;
1255
+ }
1256
+ .di-modal-select {
1257
+ width: 100%;
1258
+ padding: 8px 10px;
1259
+ border: 1px solid #e5e7eb;
1260
+ border-radius: 6px;
1261
+ font-size: 12px;
1262
+ font-family: inherit;
1263
+ outline: none;
1264
+ }
1265
+ .di-modal-result {
1266
+ background: #faf5ff;
1267
+ border: 1px solid #c4b5fd;
1268
+ border-radius: 8px;
1269
+ padding: 12px 14px;
1270
+ display: flex;
1271
+ flex-direction: column;
1272
+ gap: 4px;
1273
+ }
1274
+ .di-modal-result-label {
1275
+ font-size: 10px;
1276
+ color: #9ca3af;
1277
+ font-weight: 600;
1278
+ text-transform: uppercase;
1279
+ letter-spacing: 0.5px;
1280
+ }
1281
+ .di-modal-result-var {
1282
+ font-size: 16px;
1283
+ font-weight: 700;
1284
+ color: #7c3aed;
1285
+ font-family: monospace;
1286
+ }
1287
+ .di-modal-result-trail {
1288
+ font-size: 11px;
1289
+ color: #6b7280;
1290
+ }
1291
+ .di-modal-result-trail code {
1292
+ background: #ede9fe;
1293
+ color: #7c3aed;
1294
+ padding: 1px 5px;
1295
+ border-radius: 3px;
1296
+ font-family: monospace;
1297
+ }
1298
+ .di-modal-foot {
1299
+ display: flex;
1300
+ gap: 8px;
1301
+ padding: 14px 20px;
1302
+ border-top: 1px solid #f3f4f6;
1303
+ }
1304
+ .di-modal-cancel {
1305
+ flex: 1;
1306
+ padding: 9px 0;
1307
+ border-radius: 8px;
1308
+ border: 1px solid #e5e7eb;
1309
+ background: #fff;
1310
+ font-size: 13px;
1311
+ font-family: inherit;
1312
+ cursor: pointer;
1313
+ color: #6b7280;
1314
+ }
1315
+ .di-modal-ok {
1316
+ flex: 2;
1317
+ padding: 9px 0;
1318
+ border-radius: 8px;
1319
+ border: none;
1320
+ background: #7c3aed;
1321
+ font-size: 13px;
1322
+ font-weight: 700;
1323
+ font-family: inherit;
1324
+ cursor: pointer;
1325
+ color: #fff;
1326
+ }
1327
+ .di-modal-ok:disabled {
1328
+ background: #c4b5fd;
1329
+ cursor: default;
1330
+ }
1331
+ .di-modal-ok:hover:not(:disabled) {
1332
+ background: #6d28d9;
1333
+ }
1334
+ .di-palette-add-btn {
1335
+ width: 22px;
1336
+ height: 22px;
1337
+ border-radius: 5px;
1338
+ border: 1.5px dashed #d1d5db;
1339
+ background: none;
1340
+ color: #9ca3af;
1341
+ font-size: 16px;
1342
+ font-weight: 300;
1343
+ line-height: 1;
1344
+ cursor: pointer;
1345
+ display: flex;
1346
+ align-items: center;
1347
+ justify-content: center;
1348
+ transition: all 0.1s;
1349
+ flex-shrink: 0;
1350
+ padding: 0;
1351
+ }
1352
+ .di-palette-add-btn:hover {
1353
+ background: #f9fafb;
1354
+ border-color: #9ca3af;
1355
+ color: #6b7280;
1356
+ }
1357
+ .di-custom-bottom {
1358
+ border-top: 1px solid #f3f4f6;
1359
+ padding: 8px 12px;
1360
+ display: flex;
1361
+ align-items: center;
1362
+ gap: 6px;
1363
+ }
1364
+ .di-field-wrap {
1365
+ display: flex;
1366
+ align-items: center;
1367
+ border: 1px solid #e5e7eb;
1368
+ border-radius: 5px;
1369
+ height: 26px;
1370
+ overflow: hidden;
1371
+ flex: 1;
1372
+ }
1373
+ .di-field-wrap:focus-within {
1374
+ border-color: #7c3aed;
1375
+ }
1376
+ .di-field-wrap--fixed {
1377
+ flex: 0 0 auto;
1378
+ width: 62px;
1379
+ }
1380
+ .di-field-prefix,
1381
+ .di-field-suffix {
1382
+ padding: 0 5px;
1383
+ font-size: 11px;
1384
+ color: #9ca3af;
1385
+ flex-shrink: 0;
1386
+ user-select: none;
1387
+ }
1388
+ .di-field-input {
1389
+ flex: 1;
1390
+ border: none;
1391
+ outline: none;
1392
+ padding: 0 4px;
1393
+ height: 100%;
1394
+ font-size: 11px;
1395
+ font-family: monospace;
1396
+ color: #374151;
1397
+ min-width: 0;
1398
+ background: transparent;
1399
+ }
1400
+ .di-field-input--num {
1401
+ width: 28px;
1402
+ text-align: right;
1403
+ flex: none;
1404
+ }
1405
+ .di-field-input--num::-webkit-inner-spin-button,
1406
+ .di-field-input--num::-webkit-outer-spin-button {
1407
+ -webkit-appearance: none;
1408
+ }
1409
+ .di-field-input--num {
1410
+ -moz-appearance: textfield;
1411
+ }
1412
+ .di-add-token-confirm {
1413
+ padding: 10px 12px;
1414
+ background: #faf5ff;
1415
+ border-top: 1px solid #e5e7eb;
1416
+ display: flex;
1417
+ flex-direction: column;
1418
+ gap: 8px;
1419
+ }
1420
+ .di-add-token-row {
1421
+ display: flex;
1422
+ align-items: center;
1423
+ gap: 8px;
1424
+ }
1425
+ .di-add-token-swatch {
1426
+ width: 16px;
1427
+ height: 16px;
1428
+ border-radius: 4px;
1429
+ border: 1px solid rgba(0, 0, 0, 0.08);
1430
+ flex-shrink: 0;
1431
+ }
1432
+ .di-add-token-usage-btn {
1433
+ padding: 3px 8px;
1434
+ border-radius: 5px;
1435
+ border: 1px solid #e5e7eb;
1436
+ background: #fff;
1437
+ font-size: 10px;
1438
+ font-family: inherit;
1439
+ cursor: pointer;
1440
+ color: #374151;
1441
+ }
1442
+ .di-add-token-usage-btn:hover {
1443
+ border-color: #c4b5fd;
1444
+ color: #7c3aed;
1445
+ }
1446
+ .di-add-token-usage-btn.--on {
1447
+ background: #7c3aed;
1448
+ border-color: #7c3aed;
1449
+ color: #fff;
1450
+ }
1451
+ .di-add-token-input {
1452
+ flex: 1;
1453
+ min-width: 0;
1454
+ height: 24px;
1455
+ border: 1px solid #c4b5fd;
1456
+ border-radius: 4px;
1457
+ padding: 0 6px;
1458
+ font-size: 11px;
1459
+ font-family: monospace;
1460
+ outline: none;
1461
+ background: #fff;
1462
+ color: #374151;
1463
+ }
1464
+ .di-add-token-cancel {
1465
+ flex: 1;
1466
+ padding: 5px 0;
1467
+ border-radius: 5px;
1468
+ border: 1px solid #e5e7eb;
1469
+ background: #fff;
1470
+ font-size: 10px;
1471
+ font-family: inherit;
1472
+ cursor: pointer;
1473
+ color: #6b7280;
1474
+ }
1475
+ .di-add-token-ok {
1476
+ flex: 2;
1477
+ padding: 5px 0;
1478
+ border-radius: 5px;
1479
+ border: none;
1480
+ background: #7c3aed;
1481
+ font-size: 10px;
1482
+ font-family: inherit;
1483
+ cursor: pointer;
1484
+ color: #fff;
1485
+ font-weight: 700;
1486
+ }
1487
+ .di-add-token-ok:disabled {
1488
+ background: #c4b5fd;
1489
+ cursor: default;
1490
+ }
1491
+ .di-palette-dropdown {
1492
+ background: #fff;
1493
+ border: 1px solid #e5e7eb;
1494
+ border-radius: 12px;
1495
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
1496
+ padding: 10px 12px 4px;
1497
+ min-width: 200px;
1498
+ max-width: 240px;
1499
+ max-height: 280px;
1500
+ overflow-y: auto;
1501
+ }
1502
+ .di-palette-group {
1503
+ margin-bottom: 8px;
1504
+ }
1505
+ .di-palette-group-label {
1506
+ font-size: 10px;
1507
+ font-weight: 700;
1508
+ color: #9ca3af;
1509
+ text-transform: uppercase;
1510
+ letter-spacing: 0.6px;
1511
+ margin-bottom: 5px;
1512
+ }
1513
+ .di-palette-swatches {
1514
+ display: flex;
1515
+ flex-wrap: wrap;
1516
+ gap: 5px;
1517
+ }
1518
+ .di-palette-swatch {
1519
+ width: 22px;
1520
+ height: 22px;
1521
+ border-radius: 5px;
1522
+ border: 1px solid rgba(0, 0, 0, 0.15);
1523
+ cursor: pointer;
1524
+ transition: transform 0.1s, box-shadow 0.1s;
1525
+ flex-shrink: 0;
1526
+ }
1527
+ .di-palette-swatch:hover {
1528
+ transform: scale(1.15);
1529
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
1530
+ }
1531
+ .di-palette-none {
1532
+ width: 22px;
1533
+ height: 22px;
1534
+ border-radius: 5px;
1535
+ border: 1px solid rgba(0, 0, 0, 0.15);
1536
+ cursor: pointer;
1537
+ flex-shrink: 0;
1538
+ background: repeating-conic-gradient(#e5e7eb 0% 25%, #fff 0% 50%) 0 0 / 8px 8px;
1539
+ position: relative;
1540
+ overflow: hidden;
1541
+ transition: transform 0.1s;
1542
+ }
1543
+ .di-palette-none::after {
1544
+ content: "";
1545
+ position: absolute;
1546
+ top: 50%;
1547
+ left: -2px;
1548
+ right: -2px;
1549
+ height: 1.5px;
1550
+ background: #ef4444;
1551
+ transform: rotate(-45deg);
1552
+ transform-origin: center;
1553
+ }
1554
+ .di-palette-swatch--on {
1555
+ outline: 2px solid #7c3aed;
1556
+ outline-offset: 1px;
1557
+ }
1558
+ .di-layout-grid {
1559
+ display: grid;
1560
+ grid-template-columns: 132px 1fr;
1561
+ gap: 8px;
1562
+ }
1563
+ .di-layout-card {
1564
+ min-width: 0;
1565
+ border: 1px solid #e5e7eb;
1566
+ border-radius: 10px;
1567
+ padding: 8px 10px 10px;
1568
+ background: #fff;
1569
+ overflow: hidden;
1570
+ }
1571
+ .di-layout-card-title {
1572
+ margin-bottom: 6px;
1573
+ color: #374151;
1574
+ font-size: 11px;
1575
+ font-weight: 700;
1576
+ }
1577
+ .di-shadow-grid {
1578
+ display: grid;
1579
+ grid-template-columns: 1fr 1fr;
1580
+ gap: 6px;
1581
+ }
1582
+ .di-shadow-card {
1583
+ min-width: 0;
1584
+ border: 1px solid #e5e7eb;
1585
+ border-radius: 10px;
1586
+ padding: 8px 10px 10px;
1587
+ background: #fff;
1588
+ }
1589
+ .di-shadow-card-title {
1590
+ margin-bottom: 6px;
1591
+ color: #374151;
1592
+ font-size: 11px;
1593
+ font-weight: 700;
1594
+ }
1595
+ .di-shadow-drop {
1596
+ min-width: 240px;
1597
+ max-width: 320px;
1598
+ }
1599
+ .di-shadow-drop-meta {
1600
+ min-width: 0;
1601
+ display: flex;
1602
+ flex-direction: column;
1603
+ gap: 1px;
1604
+ align-items: flex-start;
1605
+ }
1606
+ .di-shadow-drop-value {
1607
+ color: #6b7280;
1608
+ font-size: 10px;
1609
+ line-height: 1.3;
1610
+ white-space: normal;
1611
+ word-break: break-word;
1612
+ text-align: left;
1613
+ }
1614
+ .di-shadow-preview-row {
1615
+ display: flex;
1616
+ align-items: center;
1617
+ gap: 10px;
1618
+ min-width: 0;
1619
+ }
1620
+ .di-shadow-preview-chip {
1621
+ width: 34px;
1622
+ height: 34px;
1623
+ flex: 0 0 34px;
1624
+ border-radius: 10px;
1625
+ border: 1px solid #e5e7eb;
1626
+ background: #fff;
1627
+ }
1628
+ .di-shadow-preview-copy {
1629
+ min-width: 0;
1630
+ display: flex;
1631
+ flex-direction: column;
1632
+ gap: 2px;
1633
+ }
1634
+ .di-hex--wrap {
1635
+ white-space: normal;
1636
+ word-break: break-word;
1637
+ line-height: 1.3;
1638
+ }
1639
+ .di-nudge-pad {
1640
+ display: grid;
1641
+ grid-template-columns: 30px 30px 30px;
1642
+ grid-template-rows: 30px 30px 30px;
1643
+ gap: 4px;
1644
+ align-items: center;
1645
+ justify-items: center;
1646
+ justify-content: center;
1647
+ }
1648
+ .di-nudge-btn {
1649
+ width: 30px;
1650
+ height: 30px;
1651
+ padding: 0;
1652
+ border: 1px solid #e5e7eb;
1653
+ border-radius: 6px;
1654
+ background: #fff;
1655
+ color: #45556c;
1656
+ font-size: 14px;
1657
+ font-weight: 700;
1658
+ cursor: pointer;
1659
+ transition:
1660
+ background 0.12s,
1661
+ border-color 0.12s,
1662
+ color 0.12s;
1663
+ }
1664
+ .di-nudge-btn:hover,
1665
+ .di-nudge-btn:focus-visible {
1666
+ border-color: #c4b5fd;
1667
+ background: #faf5ff;
1668
+ color: #7c3aed;
1669
+ outline: none;
1670
+ }
1671
+ .di-nudge-btn--up,
1672
+ .di-nudge-btn--down {
1673
+ grid-column: 2;
1674
+ justify-self: center;
1675
+ }
1676
+ .di-nudge-btn--left {
1677
+ grid-column: 1;
1678
+ grid-row: 2;
1679
+ }
1680
+ .di-nudge-btn--right {
1681
+ grid-column: 3;
1682
+ grid-row: 2;
1683
+ }
1684
+ .di-nudge-readout {
1685
+ grid-column: 2;
1686
+ grid-row: 2;
1687
+ display: flex;
1688
+ flex-direction: column;
1689
+ align-items: center;
1690
+ justify-content: center;
1691
+ width: 30px;
1692
+ height: 30px;
1693
+ box-sizing: border-box;
1694
+ border: 1px solid #e5e7eb;
1695
+ border-radius: 6px;
1696
+ background: #fff;
1697
+ color: #6b7280;
1698
+ font-family: monospace;
1699
+ font-size: 10px;
1700
+ line-height: 1.2;
1701
+ }
1702
+ .di-size-row {
1703
+ display: grid;
1704
+ grid-template-columns: 16px minmax(0, 1fr) 86px;
1705
+ gap: 6px;
1706
+ align-items: center;
1707
+ }
1708
+ .di-size-row + .di-size-row {
1709
+ margin-top: 6px;
1710
+ }
1711
+ .di-size-axis {
1712
+ color: #6b7280;
1713
+ font-size: 12px;
1714
+ font-weight: 700;
1715
+ }
1716
+ .di-size-value {
1717
+ min-width: 0;
1718
+ height: 30px;
1719
+ padding: 0 8px;
1720
+ border: 1px solid #e5e7eb;
1721
+ border-radius: 6px;
1722
+ background: #fff;
1723
+ color: #374151;
1724
+ font-family: monospace;
1725
+ font-size: 11px;
1726
+ text-align: left;
1727
+ cursor: text;
1728
+ overflow: hidden;
1729
+ text-overflow: ellipsis;
1730
+ white-space: nowrap;
1731
+ outline: none;
1732
+ width: 100%;
1733
+ box-sizing: border-box;
1734
+ }
1735
+ .di-size-value:hover,
1736
+ .di-size-value:focus-visible {
1737
+ border-color: #c4b5fd;
1738
+ background: #faf5ff;
1739
+ color: #7c3aed;
1740
+ outline: none;
1741
+ }
1742
+ .di-size-mode-select {
1743
+ height: 30px;
1744
+ border-radius: 6px;
1745
+ border: 1px solid #e5e7eb;
1746
+ min-width: 0;
1747
+ width: 100%;
1748
+ padding: 0 28px 0 10px;
1749
+ background: #fff;
1750
+ background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
1751
+ background-repeat: no-repeat;
1752
+ background-position: right 10px center;
1753
+ background-size: 8px 5px;
1754
+ color: #111827;
1755
+ font-size: 11px;
1756
+ font-family: inherit;
1757
+ cursor: pointer;
1758
+ outline: none;
1759
+ appearance: none;
1760
+ -webkit-appearance: none;
1761
+ }
1762
+ .di-size-mode-select:hover,
1763
+ .di-size-mode-select:focus-visible {
1764
+ border-color: #c4b5fd;
1765
+ background: #faf5ff;
1766
+ color: #7c3aed;
1767
+ }
1768
+ .di-space-row {
1769
+ display: grid;
1770
+ grid-template-columns: repeat(3, 1fr);
1771
+ gap: 6px;
1772
+ }
1773
+ .di-space-card {
1774
+ border: 1px solid #e5e7eb;
1775
+ border-radius: 10px;
1776
+ padding: 8px 8px 10px;
1777
+ display: flex;
1778
+ flex-direction: column;
1779
+ gap: 4px;
1780
+ min-width: 0;
1781
+ }
1782
+ .di-space-head {
1783
+ display: flex;
1784
+ align-items: center;
1785
+ justify-content: space-between;
1786
+ gap: 4px;
1787
+ }
1788
+ .di-space-head-left {
1789
+ display: flex;
1790
+ flex-direction: column;
1791
+ gap: 3px;
1792
+ min-width: 0;
1793
+ }
1794
+ .di-space-title {
1795
+ font-size: 11px;
1796
+ font-weight: 700;
1797
+ color: #374151;
1798
+ white-space: nowrap;
1799
+ }
1800
+ .di-space-actions {
1801
+ display: flex;
1802
+ align-items: center;
1803
+ gap: 4px;
1804
+ flex-wrap: nowrap;
1805
+ white-space: nowrap;
1806
+ }
1807
+ .di-space-token-tag {
1808
+ font-size: 9px;
1809
+ font-weight: 600;
1810
+ color: #7c3aed;
1811
+ background: rgba(124, 58, 237, 0.08);
1812
+ padding: 1px 4px;
1813
+ border-radius: 3px;
1814
+ line-height: 1.4;
1815
+ }
1816
+ .di-space-token-tag--btn {
1817
+ border: none;
1818
+ cursor: pointer;
1819
+ font-family: inherit;
1820
+ }
1821
+ .di-space-token-tag--btn:hover {
1822
+ background: rgba(124, 58, 237, 0.16);
1823
+ }
1824
+ .di-space-token-drop {
1825
+ position: absolute;
1826
+ top: calc(100% + 4px);
1827
+ left: 0;
1828
+ z-index: 20;
1829
+ background: #fff;
1830
+ border: 1px solid #e5e7eb;
1831
+ border-radius: 8px;
1832
+ box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
1833
+ overflow: hidden;
1834
+ min-width: 100px;
1835
+ }
1836
+ .di-space-token-drop-item {
1837
+ display: flex;
1838
+ align-items: center;
1839
+ justify-content: space-between;
1840
+ gap: 8px;
1841
+ width: 100%;
1842
+ padding: 5px 10px;
1843
+ border: none;
1844
+ background: none;
1845
+ font-size: 11px;
1846
+ color: #374151;
1847
+ font-family: inherit;
1848
+ cursor: pointer;
1849
+ text-align: left;
1850
+ }
1851
+ .di-space-token-drop-item:hover {
1852
+ background: #f5f3ff;
1853
+ color: #7c3aed;
1854
+ }
1855
+ .di-space-token-drop-item--on {
1856
+ background: #f5f3ff;
1857
+ color: #7c3aed;
1858
+ font-weight: 700;
1859
+ }
1860
+ .di-space-custom {
1861
+ font-size: 9px;
1862
+ color: #9ca3af;
1863
+ background: none;
1864
+ border: none;
1865
+ padding: 0;
1866
+ cursor: pointer;
1867
+ font-family: inherit;
1868
+ }
1869
+ .di-space-custom:hover {
1870
+ color: #7c3aed;
1871
+ }
1872
+ .di-space-token-match {
1873
+ font-size: 9px;
1874
+ color: #9ca3af;
1875
+ white-space: nowrap;
1876
+ }
1877
+ .di-space-body {
1878
+ display: flex;
1879
+ align-items: center;
1880
+ gap: 4px;
1881
+ }
1882
+ .di-space-visual {
1883
+ flex-shrink: 0;
1884
+ }
1885
+ .di-space-visual--padding {
1886
+ width: 24px;
1887
+ height: 24px;
1888
+ border: 1.5px solid #7c3aed;
1889
+ border-radius: 3px;
1890
+ padding: 4px;
1891
+ background: rgba(124, 58, 237, 0.1);
1892
+ display: flex;
1893
+ align-items: center;
1894
+ justify-content: center;
1895
+ flex-shrink: 0;
1896
+ }
1897
+ .di-space-visual--padding::after {
1898
+ content: "";
1899
+ display: block;
1900
+ width: 100%;
1901
+ height: 100%;
1902
+ background: rgba(124, 58, 237, 0.45);
1903
+ border-radius: 2px;
1904
+ }
1905
+ .di-space-visual--margin {
1906
+ position: relative;
1907
+ width: 11px;
1908
+ height: 11px;
1909
+ background: rgba(124, 58, 237, 0.45);
1910
+ border-radius: 2px;
1911
+ margin: 7px;
1912
+ flex-shrink: 0;
1913
+ }
1914
+ .di-space-visual--margin::before {
1915
+ content: "";
1916
+ position: absolute;
1917
+ inset: -6px;
1918
+ border: 1.5px dashed #7c3aed;
1919
+ border-radius: 3px;
1920
+ pointer-events: none;
1921
+ }
1922
+ .di-space-visual--gap {
1923
+ width: 28px;
1924
+ height: 18px;
1925
+ display: flex;
1926
+ align-items: center;
1927
+ justify-content: center;
1928
+ gap: 2px;
1929
+ flex-shrink: 0;
1930
+ }
1931
+ .di-space-visual--gap::before,
1932
+ .di-space-visual--gap::after {
1933
+ content: "";
1934
+ width: 8px;
1935
+ height: 18px;
1936
+ background: rgba(124, 58, 237, 0.35);
1937
+ border-radius: 2px;
1938
+ flex-shrink: 0;
1939
+ }
1940
+ .di-space-gap-arrow {
1941
+ font-size: 11px;
1942
+ color: #7c3aed;
1943
+ line-height: 1;
1944
+ flex-shrink: 0;
1945
+ }
1946
+ .di-space-stepper {
1947
+ flex: 1;
1948
+ display: flex;
1949
+ align-items: center;
1950
+ justify-content: space-between;
1951
+ gap: 2px;
1952
+ }
1953
+ .di-space-arrow {
1954
+ width: 20px;
1955
+ height: 20px;
1956
+ min-width: 20px;
1957
+ min-height: 20px;
1958
+ border: 1px solid #e5e7eb;
1959
+ background: #fff;
1960
+ color: #7c3aed;
1961
+ font-size: 14px;
1962
+ font-weight: 300;
1963
+ cursor: pointer;
1964
+ padding: 0;
1965
+ display: flex;
1966
+ align-items: center;
1967
+ justify-content: center;
1968
+ border-radius: 5px;
1969
+ transition: all 0.1s;
1970
+ flex-shrink: 0;
1971
+ }
1972
+ .di-space-arrow:hover {
1973
+ background: rgba(124, 58, 237, 0.08);
1974
+ }
1975
+ .di-space-arrow:disabled {
1976
+ color: #d1d5db;
1977
+ cursor: default;
1978
+ }
1979
+ .di-space-val-group {
1980
+ display: flex;
1981
+ flex-direction: column;
1982
+ align-items: center;
1983
+ gap: 0;
1984
+ }
1985
+ .di-space-size-label {
1986
+ font-size: 13px;
1987
+ font-weight: 700;
1988
+ color: #7c3aed;
1989
+ line-height: 1.2;
1990
+ }
1991
+ .di-space-size-val {
1992
+ font-size: 9px;
1993
+ color: #9ca3af;
1994
+ line-height: 1.2;
1995
+ }
1996
+ .di-preset-row {
1997
+ display: flex;
1998
+ gap: 6px;
1999
+ flex-wrap: nowrap;
2000
+ overflow-x: auto;
2001
+ padding-bottom: 4px;
2002
+ scrollbar-width: thin;
2003
+ }
2004
+ .di-preset {
2005
+ display: flex;
2006
+ flex-direction: column;
2007
+ align-items: center;
2008
+ justify-content: center;
2009
+ flex: 0 0 60px;
2010
+ min-width: 60px;
2011
+ padding: 6px 10px;
2012
+ border-radius: 8px;
2013
+ border: 1px solid #e5e7eb;
2014
+ background: #fff;
2015
+ cursor: pointer;
2016
+ transition: all 0.12s;
2017
+ gap: 1px;
2018
+ }
2019
+ .di-preset:hover {
2020
+ border-color: #c4b5fd;
2021
+ background: #faf5ff;
2022
+ }
2023
+ .di-preset--on {
2024
+ border-color: #7c3aed;
2025
+ background: #7c3aed;
2026
+ color: #fff;
2027
+ }
2028
+ .di-preset--on:hover {
2029
+ background: #6d28d9;
2030
+ border-color: #6d28d9;
2031
+ }
2032
+ .di-preset-label {
2033
+ font-size: 11px;
2034
+ font-weight: 600;
2035
+ font-family:
2036
+ "PingFang SC",
2037
+ system-ui,
2038
+ sans-serif;
2039
+ }
2040
+ .di-preset-sub {
2041
+ font-size: 10px;
2042
+ opacity: 0.75;
2043
+ }
2044
+ .di-preset--on .di-preset-sub {
2045
+ opacity: 0.85;
2046
+ }
2047
+ .di-scope-row {
2048
+ display: flex;
2049
+ gap: 8px;
2050
+ }
2051
+ .di-section-desc {
2052
+ margin-bottom: 8px;
2053
+ font-size: 11px;
2054
+ line-height: 1.45;
2055
+ color: #6b7280;
2056
+ }
2057
+ .di-scope-btn {
2058
+ flex: 1;
2059
+ min-width: 0;
2060
+ padding: 6px 0;
2061
+ border-radius: 8px;
2062
+ border: 1px solid #e5e7eb;
2063
+ background: #fff;
2064
+ color: #374151;
2065
+ font-size: 13px;
2066
+ font-family: inherit;
2067
+ white-space: nowrap;
2068
+ cursor: pointer;
2069
+ transition: all 0.12s;
2070
+ }
2071
+ .di-scope-btn:hover {
2072
+ border-color: #c4b5fd;
2073
+ background: #faf5ff;
2074
+ }
2075
+ .di-scope-btn--on {
2076
+ border-color: #7c3aed;
2077
+ background: #7c3aed;
2078
+ color: #fff;
2079
+ }
2080
+ .di-scope-btn--on:hover {
2081
+ background: #6d28d9;
2082
+ border-color: #6d28d9;
2083
+ }
2084
+ .di-scope-count {
2085
+ display: inline-flex;
2086
+ align-items: center;
2087
+ justify-content: center;
2088
+ min-width: 18px;
2089
+ height: 18px;
2090
+ padding: 0 5px;
2091
+ border-radius: 9px;
2092
+ background: rgba(124, 58, 237, 0.12);
2093
+ color: #7c3aed;
2094
+ font-size: 10px;
2095
+ font-weight: 700;
2096
+ margin-left: 4px;
2097
+ }
2098
+ .di-scope-btn--on .di-scope-count {
2099
+ background: rgba(255, 255, 255, 0.25);
2100
+ color: #fff;
2101
+ }
2102
+ .di-note {
2103
+ width: 100%;
2104
+ box-sizing: border-box;
2105
+ padding: 8px 10px;
2106
+ border: 1px solid #e5e7eb;
2107
+ border-radius: 8px;
2108
+ font-size: 13px;
2109
+ font-family: inherit;
2110
+ color: #374151;
2111
+ resize: none;
2112
+ outline: none;
2113
+ transition: border-color 0.12s;
2114
+ line-height: 1.5;
2115
+ }
2116
+ .di-note:focus {
2117
+ border-color: #7c3aed;
2118
+ }
2119
+ .di-note::placeholder {
2120
+ color: #9ca3af;
2121
+ }
2122
+ .di-foot {
2123
+ display: flex;
2124
+ gap: 8px;
2125
+ padding: 8px 14px;
2126
+ border-top: 1px solid #f3f4f6;
2127
+ flex-shrink: 0;
2128
+ }
2129
+ .di-btn-cancel {
2130
+ flex: 1;
2131
+ padding: 7px 0;
2132
+ border-radius: 8px;
2133
+ border: 1px solid #e5e7eb;
2134
+ background: #fff;
2135
+ color: #374151;
2136
+ font-size: 14px;
2137
+ font-weight: 600;
2138
+ font-family: inherit;
2139
+ cursor: pointer;
2140
+ transition: background 0.12s;
2141
+ }
2142
+ .di-btn-cancel:hover {
2143
+ background: #f9fafb;
2144
+ }
2145
+ .di-btn-submit {
2146
+ flex: 1.3;
2147
+ padding: 7px 0;
2148
+ border-radius: 8px;
2149
+ border: 1px solid rgba(124, 58, 237, 0.2);
2150
+ background: #faf5ff;
2151
+ color: #7c3aed;
2152
+ font-size: 14px;
2153
+ font-weight: 700;
2154
+ font-family: inherit;
2155
+ white-space: nowrap;
2156
+ cursor: pointer;
2157
+ transition:
2158
+ background 0.12s,
2159
+ border-color 0.12s,
2160
+ color 0.12s;
2161
+ }
2162
+ .di-btn-submit:hover {
2163
+ background: #f3e8ff;
2164
+ border-color: rgba(124, 58, 237, 0.32);
2165
+ color: #6d28d9;
2166
+ }
2167
+ .di-paste-bar {
2168
+ padding: 0 14px 10px;
2169
+ }
2170
+ .di-btn-paste {
2171
+ width: 100%;
2172
+ padding: 7px 0;
2173
+ border-radius: 8px;
2174
+ border: 1px dashed #c4b5fd;
2175
+ background: #faf5ff;
2176
+ color: #7c3aed;
2177
+ font-size: 13px;
2178
+ font-weight: 600;
2179
+ font-family: inherit;
2180
+ cursor: pointer;
2181
+ transition: background 0.12s;
2182
+ }
2183
+ .di-btn-paste:hover {
2184
+ background: #ede9fe;
2185
+ }
2186
+ .di-btn-save {
2187
+ flex: 1.6;
2188
+ padding: 7px 12px;
2189
+ border-radius: 8px;
2190
+ border: none;
2191
+ background: #7c3aed;
2192
+ color: #fff;
2193
+ font-size: 14px;
2194
+ font-weight: 700;
2195
+ font-family: inherit;
2196
+ white-space: nowrap;
2197
+ cursor: pointer;
2198
+ transition: background 0.12s;
2199
+ box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
2200
+ }
2201
+ .di-btn-save:hover {
2202
+ background: #6d28d9;
2203
+ }
2204
+ .di-section-title--spaced {
2205
+ margin-top: 16px;
2206
+ }
2207
+ .di-inbox-summary {
2208
+ display: flex;
2209
+ flex-direction: column;
2210
+ gap: 10px;
2211
+ }
2212
+ .di-inbox-list {
2213
+ display: flex;
2214
+ flex-direction: column;
2215
+ gap: 10px;
2216
+ }
2217
+ .di-inbox-pill {
2218
+ align-self: flex-start;
2219
+ padding: 5px 10px;
2220
+ border-radius: 999px;
2221
+ background: rgba(124, 58, 237, 0.1);
2222
+ color: #7c3aed;
2223
+ font-size: 12px;
2224
+ font-weight: 700;
2225
+ }
2226
+ .di-inbox-card {
2227
+ display: flex;
2228
+ flex-direction: column;
2229
+ gap: 8px;
2230
+ padding: 12px;
2231
+ border: 1px solid #ede9fe;
2232
+ border-radius: 10px;
2233
+ background: #faf5ff;
2234
+ }
2235
+ .di-inbox-card-head {
2236
+ display: flex;
2237
+ align-items: flex-start;
2238
+ justify-content: space-between;
2239
+ gap: 10px;
2240
+ }
2241
+ .di-inbox-card-head .di-inbox-delete {
2242
+ white-space: nowrap;
2243
+ }
2244
+ .di-inbox-target {
2245
+ font-size: 13px;
2246
+ font-weight: 700;
2247
+ color: #312e81;
2248
+ word-break: break-word;
2249
+ }
2250
+ .di-inbox-note {
2251
+ font-size: 12px;
2252
+ line-height: 1.5;
2253
+ color: #6b7280;
2254
+ word-break: break-word;
2255
+ }
2256
+ .di-inbox-change-list {
2257
+ margin: 0;
2258
+ padding: 0;
2259
+ list-style: none;
2260
+ display: flex;
2261
+ flex-direction: column;
2262
+ gap: 6px;
2263
+ }
2264
+ .di-inbox-change-item {
2265
+ display: flex;
2266
+ align-items: flex-start;
2267
+ justify-content: space-between;
2268
+ gap: 10px;
2269
+ color: #4b5563;
2270
+ font-size: 12px;
2271
+ line-height: 1.45;
2272
+ }
2273
+ .di-inbox-change-text {
2274
+ flex: 1;
2275
+ min-width: 0;
2276
+ word-break: break-word;
2277
+ }
2278
+ .di-inbox-delete {
2279
+ flex-shrink: 0;
2280
+ border: none;
2281
+ background: transparent;
2282
+ color: #7c3aed;
2283
+ font-size: 12px;
2284
+ font-weight: 700;
2285
+ cursor: pointer;
2286
+ padding: 0;
2287
+ }
2288
+ .di-inbox-delete:hover {
2289
+ color: #6d28d9;
2290
+ }
2291
+ .di-inbox-delete--mini {
2292
+ font-size: 11px;
2293
+ line-height: 1.4;
2294
+ }
2295
+ /*# sourceMappingURL=index.css.map */