codexmate 0.0.12 → 0.0.13
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/README.md +24 -2
- package/README.zh-CN.md +24 -2
- package/{src/cli.js → cli.js} +2689 -256
- package/doc/CHANGELOG.md +6 -0
- package/doc/CHANGELOG.zh-CN.md +6 -0
- package/lib/mcp-stdio.js +440 -0
- package/package.json +56 -53
- package/web-ui/app.js +903 -10
- package/web-ui/index.html +350 -55
- package/web-ui/styles.css +394 -49
- package/src/lib/cli-file-utils.js +0 -151
- package/src/lib/cli-models-utils.js +0 -152
- package/src/lib/cli-network-utils.js +0 -148
- package/src/lib/cli-session-utils.js +0 -121
- package/src/lib/cli-utils.js +0 -139
- package/src/res/json5.min.js +0 -1
- package/src/res/logo.png +0 -0
- package/src/res/screenshot.png +0 -0
- package/src/res/vue.global.js +0 -18552
- package/src/web-ui/app.js +0 -2970
- package/src/web-ui/index.html +0 -1310
- package/src/web-ui/logic.mjs +0 -157
- package/src/web-ui/styles.css +0 -2868
- /package/{src/web-ui.html → web-ui.html} +0 -0
package/web-ui/styles.css
CHANGED
|
@@ -10,26 +10,26 @@
|
|
|
10
10
|
--color-brand-light: rgba(208, 88, 58, 0.14);
|
|
11
11
|
--color-brand-subtle: rgba(201, 94, 75, 0.2);
|
|
12
12
|
|
|
13
|
-
--color-bg: #
|
|
14
|
-
--color-surface: #
|
|
15
|
-
--color-surface-alt: #
|
|
13
|
+
--color-bg: #F8F2EA;
|
|
14
|
+
--color-surface: #FFFDFC;
|
|
15
|
+
--color-surface-alt: #FFF8F2;
|
|
16
16
|
--color-surface-elevated: #FFFFFF;
|
|
17
|
-
--color-surface-tint: rgba(255, 255, 255, 0.
|
|
17
|
+
--color-surface-tint: rgba(255, 255, 255, 0.84);
|
|
18
18
|
--color-text-primary: #1B1714;
|
|
19
|
-
--color-text-secondary: #
|
|
20
|
-
--color-text-tertiary: #
|
|
19
|
+
--color-text-secondary: #473C34;
|
|
20
|
+
--color-text-tertiary: #6F6054;
|
|
21
21
|
--color-text-muted: #6C5B50;
|
|
22
22
|
--color-border: #D8C9B8;
|
|
23
|
-
--color-border-soft: rgba(216, 201, 184, 0.
|
|
24
|
-
--color-border-strong: rgba(216, 201, 184, 0.
|
|
23
|
+
--color-border-soft: rgba(216, 201, 184, 0.38);
|
|
24
|
+
--color-border-strong: rgba(216, 201, 184, 0.68);
|
|
25
25
|
|
|
26
26
|
--color-success: #4B8B6A;
|
|
27
27
|
--color-error: #C44536;
|
|
28
28
|
|
|
29
29
|
--bg-warm-gradient:
|
|
30
|
-
radial-gradient(circle at 16% 10%, rgba(201, 94, 75, 0.
|
|
31
|
-
radial-gradient(circle at 90% 6%, rgba(255, 255, 255, 0.
|
|
32
|
-
linear-gradient(135deg, #
|
|
30
|
+
radial-gradient(circle at 16% 10%, rgba(201, 94, 75, 0.14), transparent 48%),
|
|
31
|
+
radial-gradient(circle at 90% 6%, rgba(255, 255, 255, 0.9), transparent 42%),
|
|
32
|
+
linear-gradient(135deg, #F8F2EA 0%, #F1E4D8 44%, #F8F2EA 100%);
|
|
33
33
|
|
|
34
34
|
/* 字体系统 */
|
|
35
35
|
--font-family-body: 'Source Sans 3', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
|
|
@@ -66,21 +66,11 @@
|
|
|
66
66
|
--radius-full: 50px;
|
|
67
67
|
|
|
68
68
|
/* 阴影系统 - 多层叠加提升真实感 */
|
|
69
|
-
--shadow-subtle:
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
--shadow-
|
|
73
|
-
|
|
74
|
-
0 4px 12px rgba(31, 26, 23, 0.03);
|
|
75
|
-
--shadow-card-hover:
|
|
76
|
-
0 2px 4px rgba(31, 26, 23, 0.04),
|
|
77
|
-
0 8px 20px rgba(31, 26, 23, 0.06);
|
|
78
|
-
--shadow-float:
|
|
79
|
-
0 6px 16px rgba(31, 26, 23, 0.08),
|
|
80
|
-
0 18px 36px rgba(31, 26, 23, 0.06);
|
|
81
|
-
--shadow-raised:
|
|
82
|
-
0 4px 12px rgba(31, 26, 23, 0.06),
|
|
83
|
-
0 12px 32px rgba(31, 26, 23, 0.04);
|
|
69
|
+
--shadow-subtle: 0 1px 2px rgba(31, 26, 23, 0.03);
|
|
70
|
+
--shadow-card: 0 6px 18px rgba(31, 26, 23, 0.06);
|
|
71
|
+
--shadow-card-hover: 0 10px 24px rgba(31, 26, 23, 0.08);
|
|
72
|
+
--shadow-float: 0 12px 26px rgba(31, 26, 23, 0.12);
|
|
73
|
+
--shadow-raised: 0 10px 20px rgba(31, 26, 23, 0.1);
|
|
84
74
|
--shadow-modal:
|
|
85
75
|
0 8px 24px rgba(31, 26, 23, 0.08),
|
|
86
76
|
0 24px 64px rgba(31, 26, 23, 0.06);
|
|
@@ -90,9 +80,9 @@
|
|
|
90
80
|
|
|
91
81
|
/* 动画 - 更细腻的曲线 */
|
|
92
82
|
--transition-instant: 100ms;
|
|
93
|
-
--transition-fast:
|
|
94
|
-
--transition-normal:
|
|
95
|
-
--transition-slow:
|
|
83
|
+
--transition-fast: 120ms;
|
|
84
|
+
--transition-normal: 200ms;
|
|
85
|
+
--transition-slow: 300ms;
|
|
96
86
|
--ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
|
|
97
87
|
--ease-spring-soft: cubic-bezier(0.25, 1, 0.5, 1);
|
|
98
88
|
--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -155,7 +145,7 @@ body {
|
|
|
155
145
|
}
|
|
156
146
|
|
|
157
147
|
.fab-install:hover {
|
|
158
|
-
transform: translateY(-
|
|
148
|
+
transform: translateY(-1px);
|
|
159
149
|
box-shadow: var(--shadow-raised);
|
|
160
150
|
}
|
|
161
151
|
|
|
@@ -183,7 +173,7 @@ body::before {
|
|
|
183
173
|
radial-gradient(circle at 12% 18%, rgba(201, 94, 75, 0.1), transparent 38%),
|
|
184
174
|
repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px 120px),
|
|
185
175
|
repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 120px);
|
|
186
|
-
opacity: 0.
|
|
176
|
+
opacity: 0.28;
|
|
187
177
|
pointer-events: none;
|
|
188
178
|
z-index: 0;
|
|
189
179
|
}
|
|
@@ -197,7 +187,7 @@ body::after {
|
|
|
197
187
|
linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
|
|
198
188
|
linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
|
|
199
189
|
background-size: 120px 120px;
|
|
200
|
-
opacity: 0.
|
|
190
|
+
opacity: 0.22;
|
|
201
191
|
pointer-events: none;
|
|
202
192
|
z-index: 0;
|
|
203
193
|
}
|
|
@@ -207,7 +197,7 @@ body::after {
|
|
|
207
197
|
============================================ */
|
|
208
198
|
.container {
|
|
209
199
|
width: 100%;
|
|
210
|
-
max-width:
|
|
200
|
+
max-width: 1460px;
|
|
211
201
|
margin: 0 auto;
|
|
212
202
|
padding: 16px 12px 28px;
|
|
213
203
|
position: relative;
|
|
@@ -215,12 +205,12 @@ body::after {
|
|
|
215
205
|
}
|
|
216
206
|
|
|
217
207
|
/* ============================================
|
|
218
|
-
|
|
208
|
+
布局:三栏(侧栏 + 主区 + 状态检查器)
|
|
219
209
|
============================================ */
|
|
220
210
|
.app-shell {
|
|
221
211
|
display: grid;
|
|
222
|
-
grid-template-columns:
|
|
223
|
-
gap:
|
|
212
|
+
grid-template-columns: 240px minmax(0, 1fr) 340px;
|
|
213
|
+
gap: 16px;
|
|
224
214
|
align-items: flex-start;
|
|
225
215
|
}
|
|
226
216
|
|
|
@@ -411,7 +401,7 @@ body::after {
|
|
|
411
401
|
padding: 10px 12px;
|
|
412
402
|
border-radius: var(--radius-lg);
|
|
413
403
|
border: 1px solid var(--color-border-soft);
|
|
414
|
-
background: linear-gradient(180deg, rgba(255, 255, 255, 0.
|
|
404
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 250, 245, 0.97) 100%);
|
|
415
405
|
box-shadow: var(--shadow-subtle);
|
|
416
406
|
}
|
|
417
407
|
|
|
@@ -434,10 +424,10 @@ body::after {
|
|
|
434
424
|
|
|
435
425
|
.main-panel {
|
|
436
426
|
min-width: 0;
|
|
437
|
-
background: rgba(255, 255, 255, 0.
|
|
438
|
-
border: 1px solid rgba(
|
|
427
|
+
background: rgba(255, 255, 255, 0.95);
|
|
428
|
+
border: 1px solid rgba(216, 201, 184, 0.48);
|
|
439
429
|
border-radius: 18px;
|
|
440
|
-
box-shadow:
|
|
430
|
+
box-shadow: var(--shadow-card);
|
|
441
431
|
padding: var(--spacing-md) var(--spacing-lg);
|
|
442
432
|
backdrop-filter: blur(8px);
|
|
443
433
|
position: relative;
|
|
@@ -445,6 +435,91 @@ body::after {
|
|
|
445
435
|
overflow-y: visible;
|
|
446
436
|
}
|
|
447
437
|
|
|
438
|
+
.status-inspector {
|
|
439
|
+
position: sticky;
|
|
440
|
+
top: 24px;
|
|
441
|
+
align-self: start;
|
|
442
|
+
height: calc(100vh - 48px);
|
|
443
|
+
overflow: auto;
|
|
444
|
+
padding: 16px;
|
|
445
|
+
border-radius: var(--radius-xl);
|
|
446
|
+
border: 1px solid var(--color-border-soft);
|
|
447
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 241, 0.92) 100%);
|
|
448
|
+
box-shadow: var(--shadow-card);
|
|
449
|
+
display: flex;
|
|
450
|
+
flex-direction: column;
|
|
451
|
+
gap: 12px;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.inspector-head {
|
|
455
|
+
padding: 2px 2px 8px;
|
|
456
|
+
border-bottom: 1px solid rgba(216, 201, 184, 0.35);
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.inspector-title {
|
|
460
|
+
font-size: 16px;
|
|
461
|
+
line-height: 1.25;
|
|
462
|
+
font-weight: 600;
|
|
463
|
+
color: var(--color-text-primary);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.inspector-subtitle {
|
|
467
|
+
margin-top: 4px;
|
|
468
|
+
font-size: 12px;
|
|
469
|
+
color: var(--color-text-tertiary);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.inspector-group {
|
|
473
|
+
padding: 12px;
|
|
474
|
+
border-radius: var(--radius-lg);
|
|
475
|
+
border: 1px solid rgba(216, 201, 184, 0.34);
|
|
476
|
+
background: rgba(255, 255, 255, 0.88);
|
|
477
|
+
box-shadow: var(--shadow-subtle);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.inspector-group-title {
|
|
481
|
+
font-size: 13px;
|
|
482
|
+
font-weight: 600;
|
|
483
|
+
color: var(--color-text-secondary);
|
|
484
|
+
margin-bottom: 10px;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.inspector-kv {
|
|
488
|
+
display: grid;
|
|
489
|
+
grid-template-columns: 92px minmax(0, 1fr);
|
|
490
|
+
gap: 8px 10px;
|
|
491
|
+
align-items: start;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.inspector-kv .key {
|
|
495
|
+
font-size: 11px;
|
|
496
|
+
line-height: 1.4;
|
|
497
|
+
color: var(--color-text-muted);
|
|
498
|
+
letter-spacing: 0.01em;
|
|
499
|
+
font-family: var(--font-family-mono);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.inspector-kv .value {
|
|
503
|
+
font-size: 14px;
|
|
504
|
+
line-height: 1.35;
|
|
505
|
+
font-weight: 500;
|
|
506
|
+
color: var(--color-text-primary);
|
|
507
|
+
overflow-wrap: anywhere;
|
|
508
|
+
word-break: break-word;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.inspector-kv .value.tone-ok {
|
|
512
|
+
color: var(--color-success);
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.inspector-kv .value.tone-warn {
|
|
516
|
+
color: #8d5b31;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.inspector-kv .value.tone-error {
|
|
520
|
+
color: var(--color-error);
|
|
521
|
+
}
|
|
522
|
+
|
|
448
523
|
.panel-header {
|
|
449
524
|
margin-bottom: 12px;
|
|
450
525
|
text-align: left;
|
|
@@ -564,18 +639,18 @@ body::after {
|
|
|
564
639
|
}
|
|
565
640
|
|
|
566
641
|
.content-wrapper {
|
|
567
|
-
background: rgba(255, 255, 255, 0.
|
|
568
|
-
border: 1px solid rgba(
|
|
642
|
+
background: rgba(255, 255, 255, 0.94);
|
|
643
|
+
border: 1px solid rgba(216, 201, 184, 0.35);
|
|
569
644
|
border-radius: var(--radius-lg);
|
|
570
|
-
box-shadow: var(--shadow-
|
|
645
|
+
box-shadow: var(--shadow-subtle);
|
|
571
646
|
padding: 0;
|
|
572
647
|
}
|
|
573
648
|
|
|
574
649
|
.mode-content {
|
|
575
650
|
border-radius: var(--radius-lg);
|
|
576
|
-
background: rgba(255, 255, 255, 0.
|
|
651
|
+
background: rgba(255, 255, 255, 0.9);
|
|
577
652
|
box-shadow: var(--shadow-subtle);
|
|
578
|
-
padding:
|
|
653
|
+
padding: 12px;
|
|
579
654
|
}
|
|
580
655
|
|
|
581
656
|
/* ============================================
|
|
@@ -685,8 +760,8 @@ body::after {
|
|
|
685
760
|
}
|
|
686
761
|
|
|
687
762
|
.card:hover {
|
|
688
|
-
transform: translateY(-
|
|
689
|
-
box-shadow:
|
|
763
|
+
transform: translateY(-1px);
|
|
764
|
+
box-shadow: var(--shadow-card-hover);
|
|
690
765
|
}
|
|
691
766
|
|
|
692
767
|
.card::before,
|
|
@@ -715,7 +790,7 @@ body::after {
|
|
|
715
790
|
}
|
|
716
791
|
|
|
717
792
|
.card:active {
|
|
718
|
-
transform: translateY(0)
|
|
793
|
+
transform: translateY(0);
|
|
719
794
|
transition: transform var(--transition-instant) var(--ease-smooth);
|
|
720
795
|
}
|
|
721
796
|
|
|
@@ -775,6 +850,10 @@ body::after {
|
|
|
775
850
|
}
|
|
776
851
|
|
|
777
852
|
.card-title {
|
|
853
|
+
display: flex;
|
|
854
|
+
align-items: center;
|
|
855
|
+
gap: 8px;
|
|
856
|
+
min-width: 0;
|
|
778
857
|
font-size: var(--font-size-body);
|
|
779
858
|
font-weight: var(--font-weight-secondary);
|
|
780
859
|
color: var(--color-text-primary);
|
|
@@ -784,6 +863,27 @@ body::after {
|
|
|
784
863
|
letter-spacing: -0.01em;
|
|
785
864
|
}
|
|
786
865
|
|
|
866
|
+
.card-title > span:first-child {
|
|
867
|
+
min-width: 0;
|
|
868
|
+
overflow: hidden;
|
|
869
|
+
text-overflow: ellipsis;
|
|
870
|
+
white-space: nowrap;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.provider-readonly-badge {
|
|
874
|
+
display: inline-flex;
|
|
875
|
+
align-items: center;
|
|
876
|
+
justify-content: center;
|
|
877
|
+
padding: 2px 8px;
|
|
878
|
+
border-radius: var(--radius-full);
|
|
879
|
+
font-size: 11px;
|
|
880
|
+
line-height: 1;
|
|
881
|
+
color: #6f4b00;
|
|
882
|
+
background: linear-gradient(135deg, rgba(246, 211, 106, 0.32) 0%, rgba(246, 211, 106, 0.2) 100%);
|
|
883
|
+
border: 1px solid rgba(191, 151, 40, 0.35);
|
|
884
|
+
flex-shrink: 0;
|
|
885
|
+
}
|
|
886
|
+
|
|
787
887
|
.card-subtitle {
|
|
788
888
|
font-size: var(--font-size-secondary);
|
|
789
889
|
color: var(--color-text-tertiary);
|
|
@@ -858,6 +958,20 @@ body::after {
|
|
|
858
958
|
color: var(--color-error);
|
|
859
959
|
}
|
|
860
960
|
|
|
961
|
+
.card-action-btn:disabled,
|
|
962
|
+
.card-action-btn.disabled {
|
|
963
|
+
opacity: 0.45;
|
|
964
|
+
cursor: not-allowed;
|
|
965
|
+
transform: none;
|
|
966
|
+
filter: grayscale(0.1);
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.card-action-btn.delete:disabled:hover,
|
|
970
|
+
.card-action-btn.delete.disabled:hover {
|
|
971
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
|
|
972
|
+
color: var(--color-text-secondary);
|
|
973
|
+
}
|
|
974
|
+
|
|
861
975
|
.card-action-btn svg {
|
|
862
976
|
width: 18px;
|
|
863
977
|
height: 18px;
|
|
@@ -947,6 +1061,9 @@ body::after {
|
|
|
947
1061
|
margin-bottom: 16px;
|
|
948
1062
|
box-shadow: var(--shadow-card);
|
|
949
1063
|
border: 1px solid var(--color-border-soft);
|
|
1064
|
+
display: flex;
|
|
1065
|
+
flex-direction: column;
|
|
1066
|
+
gap: var(--spacing-xs);
|
|
950
1067
|
}
|
|
951
1068
|
|
|
952
1069
|
.selector-header {
|
|
@@ -1172,6 +1289,13 @@ body::after {
|
|
|
1172
1289
|
transition: all var(--transition-fast) var(--ease-spring);
|
|
1173
1290
|
box-shadow: var(--shadow-subtle);
|
|
1174
1291
|
letter-spacing: -0.01em;
|
|
1292
|
+
width: 100%;
|
|
1293
|
+
text-align: center;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.selector-section .btn-tool + .btn-tool {
|
|
1297
|
+
margin-left: 0;
|
|
1298
|
+
margin-top: var(--spacing-xs);
|
|
1175
1299
|
}
|
|
1176
1300
|
|
|
1177
1301
|
.btn-tool:hover {
|
|
@@ -1644,6 +1768,12 @@ body::after {
|
|
|
1644
1768
|
height: 16px;
|
|
1645
1769
|
}
|
|
1646
1770
|
|
|
1771
|
+
.session-item-sub.session-item-snippet,
|
|
1772
|
+
.session-preview-meta,
|
|
1773
|
+
.session-preview-title {
|
|
1774
|
+
display: none !important;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1647
1777
|
.session-item-sub {
|
|
1648
1778
|
font-size: var(--font-size-caption);
|
|
1649
1779
|
color: var(--color-text-tertiary);
|
|
@@ -2003,6 +2133,35 @@ body::after {
|
|
|
2003
2133
|
max-width: 980px;
|
|
2004
2134
|
}
|
|
2005
2135
|
|
|
2136
|
+
.modal-editor {
|
|
2137
|
+
width: min(96vw, 980px);
|
|
2138
|
+
max-height: calc(100vh - 24px);
|
|
2139
|
+
display: flex;
|
|
2140
|
+
flex-direction: column;
|
|
2141
|
+
overflow: hidden;
|
|
2142
|
+
padding: 0;
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
.modal-editor-header {
|
|
2146
|
+
margin-bottom: 0;
|
|
2147
|
+
padding: var(--spacing-md) var(--spacing-md) 0;
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
.modal-editor-body {
|
|
2151
|
+
flex: 1;
|
|
2152
|
+
min-height: 0;
|
|
2153
|
+
overflow-y: auto;
|
|
2154
|
+
padding: var(--spacing-sm) var(--spacing-md) 0;
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
.modal-editor-footer {
|
|
2158
|
+
margin-top: 0;
|
|
2159
|
+
padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
|
|
2160
|
+
border-top: 1px solid var(--color-border-soft);
|
|
2161
|
+
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.96) 100%);
|
|
2162
|
+
backdrop-filter: blur(2px);
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2006
2165
|
.modal-title {
|
|
2007
2166
|
font-size: var(--font-size-title);
|
|
2008
2167
|
font-weight: var(--font-weight-title);
|
|
@@ -2028,6 +2187,18 @@ body::after {
|
|
|
2028
2187
|
background: var(--color-surface-alt);
|
|
2029
2188
|
}
|
|
2030
2189
|
|
|
2190
|
+
.install-row-main {
|
|
2191
|
+
flex: 1;
|
|
2192
|
+
display: flex;
|
|
2193
|
+
flex-direction: column;
|
|
2194
|
+
gap: 6px;
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2197
|
+
.install-row-title {
|
|
2198
|
+
font-size: var(--font-size-secondary);
|
|
2199
|
+
color: var(--color-text-secondary);
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2031
2202
|
.install-command {
|
|
2032
2203
|
flex: 1;
|
|
2033
2204
|
font-family: var(--font-family-mono);
|
|
@@ -2044,6 +2215,44 @@ body::after {
|
|
|
2044
2215
|
white-space: nowrap;
|
|
2045
2216
|
}
|
|
2046
2217
|
|
|
2218
|
+
.install-action-tabs {
|
|
2219
|
+
display: flex;
|
|
2220
|
+
gap: var(--spacing-xs);
|
|
2221
|
+
flex-wrap: wrap;
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
.install-action-tabs .btn-mini.active {
|
|
2225
|
+
background: rgba(201, 94, 75, 0.16);
|
|
2226
|
+
border-color: rgba(201, 94, 75, 0.32);
|
|
2227
|
+
color: var(--color-text-primary);
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
.install-registry-input {
|
|
2231
|
+
width: 100%;
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.install-registry-hint {
|
|
2235
|
+
width: 100%;
|
|
2236
|
+
margin-top: 2px;
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
.install-help {
|
|
2240
|
+
margin-top: var(--spacing-sm);
|
|
2241
|
+
border-top: 1px dashed var(--color-border-soft);
|
|
2242
|
+
padding-top: var(--spacing-sm);
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
.install-help-list {
|
|
2246
|
+
margin: 6px 0 0;
|
|
2247
|
+
padding-left: 18px;
|
|
2248
|
+
color: var(--color-text-secondary);
|
|
2249
|
+
font-size: var(--font-size-secondary);
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
.install-help-list li + li {
|
|
2253
|
+
margin-top: 4px;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2047
2256
|
.modal-header {
|
|
2048
2257
|
display: flex;
|
|
2049
2258
|
align-items: center;
|
|
@@ -2057,6 +2266,13 @@ body::after {
|
|
|
2057
2266
|
margin-bottom: 0;
|
|
2058
2267
|
}
|
|
2059
2268
|
|
|
2269
|
+
.modal-header-actions {
|
|
2270
|
+
display: inline-flex;
|
|
2271
|
+
align-items: center;
|
|
2272
|
+
gap: 8px;
|
|
2273
|
+
margin-left: auto;
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2060
2276
|
.btn-modal-copy {
|
|
2061
2277
|
padding: 6px 12px;
|
|
2062
2278
|
white-space: nowrap;
|
|
@@ -2327,6 +2543,83 @@ body::after {
|
|
|
2327
2543
|
word-break: break-all;
|
|
2328
2544
|
}
|
|
2329
2545
|
|
|
2546
|
+
.auth-profile-list {
|
|
2547
|
+
display: flex;
|
|
2548
|
+
flex-direction: column;
|
|
2549
|
+
gap: var(--spacing-xs);
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
.auth-profile-item {
|
|
2553
|
+
border: 1px dashed var(--color-border-soft);
|
|
2554
|
+
border-radius: var(--radius-sm);
|
|
2555
|
+
padding: var(--spacing-sm);
|
|
2556
|
+
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.82) 0%, rgba(247, 241, 232, 0.4) 100%);
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2559
|
+
.auth-profile-header {
|
|
2560
|
+
display: flex;
|
|
2561
|
+
align-items: flex-start;
|
|
2562
|
+
justify-content: space-between;
|
|
2563
|
+
gap: var(--spacing-sm);
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
.auth-profile-main {
|
|
2567
|
+
min-width: 0;
|
|
2568
|
+
flex: 1;
|
|
2569
|
+
display: flex;
|
|
2570
|
+
flex-direction: column;
|
|
2571
|
+
gap: 6px;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
.auth-profile-title {
|
|
2575
|
+
font-size: var(--font-size-body);
|
|
2576
|
+
font-weight: var(--font-weight-secondary);
|
|
2577
|
+
color: var(--color-text-secondary);
|
|
2578
|
+
letter-spacing: -0.01em;
|
|
2579
|
+
word-break: break-all;
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
.auth-profile-meta {
|
|
2583
|
+
display: flex;
|
|
2584
|
+
flex-wrap: wrap;
|
|
2585
|
+
gap: 8px;
|
|
2586
|
+
align-items: center;
|
|
2587
|
+
}
|
|
2588
|
+
|
|
2589
|
+
.auth-profile-actions {
|
|
2590
|
+
display: flex;
|
|
2591
|
+
flex-wrap: wrap;
|
|
2592
|
+
gap: 8px;
|
|
2593
|
+
justify-content: flex-end;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
.auth-profile-grid {
|
|
2597
|
+
margin-top: 10px;
|
|
2598
|
+
display: grid;
|
|
2599
|
+
grid-template-columns: minmax(96px, 130px) minmax(0, 1fr);
|
|
2600
|
+
gap: 8px 12px;
|
|
2601
|
+
align-items: start;
|
|
2602
|
+
}
|
|
2603
|
+
|
|
2604
|
+
.auth-profile-row {
|
|
2605
|
+
display: contents;
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2608
|
+
.auth-profile-key {
|
|
2609
|
+
font-family: var(--font-family-mono);
|
|
2610
|
+
font-size: var(--font-size-caption);
|
|
2611
|
+
color: var(--color-text-muted);
|
|
2612
|
+
line-height: 1.4;
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
.auth-profile-value {
|
|
2616
|
+
font-family: var(--font-family-mono);
|
|
2617
|
+
font-size: var(--font-size-caption);
|
|
2618
|
+
color: var(--color-text-secondary);
|
|
2619
|
+
line-height: 1.4;
|
|
2620
|
+
word-break: break-all;
|
|
2621
|
+
}
|
|
2622
|
+
|
|
2330
2623
|
.agent-list {
|
|
2331
2624
|
display: flex;
|
|
2332
2625
|
flex-direction: column;
|
|
@@ -2434,7 +2727,7 @@ body::after {
|
|
|
2434
2727
|
}
|
|
2435
2728
|
|
|
2436
2729
|
.btn:active {
|
|
2437
|
-
transform: scale(0.
|
|
2730
|
+
transform: scale(0.985);
|
|
2438
2731
|
}
|
|
2439
2732
|
|
|
2440
2733
|
.btn-cancel {
|
|
@@ -2650,6 +2943,22 @@ textarea:focus-visible {
|
|
|
2650
2943
|
outline-offset: 2px;
|
|
2651
2944
|
}
|
|
2652
2945
|
|
|
2946
|
+
@media (max-width: 1280px) {
|
|
2947
|
+
.app-shell {
|
|
2948
|
+
grid-template-columns: 220px minmax(0, 1fr) 300px;
|
|
2949
|
+
gap: 14px;
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
.status-inspector {
|
|
2953
|
+
top: 16px;
|
|
2954
|
+
height: calc(100vh - 32px);
|
|
2955
|
+
}
|
|
2956
|
+
|
|
2957
|
+
.main-panel {
|
|
2958
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
2959
|
+
}
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2653
2962
|
@media (max-width: 960px) {
|
|
2654
2963
|
.container {
|
|
2655
2964
|
padding: 12px;
|
|
@@ -2660,6 +2969,9 @@ textarea:focus-visible {
|
|
|
2660
2969
|
.side-rail {
|
|
2661
2970
|
display: none;
|
|
2662
2971
|
}
|
|
2972
|
+
.status-inspector {
|
|
2973
|
+
display: none;
|
|
2974
|
+
}
|
|
2663
2975
|
.hero-logo {
|
|
2664
2976
|
display: block;
|
|
2665
2977
|
}
|
|
@@ -2862,6 +3174,39 @@ textarea:focus-visible {
|
|
|
2862
3174
|
display: none;
|
|
2863
3175
|
}
|
|
2864
3176
|
|
|
3177
|
+
.auth-profile-item {
|
|
3178
|
+
padding: 10px;
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
.auth-profile-header {
|
|
3182
|
+
flex-direction: column;
|
|
3183
|
+
align-items: stretch;
|
|
3184
|
+
gap: 10px;
|
|
3185
|
+
}
|
|
3186
|
+
|
|
3187
|
+
.auth-profile-actions {
|
|
3188
|
+
justify-content: flex-start;
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
.auth-profile-grid {
|
|
3192
|
+
grid-template-columns: 1fr;
|
|
3193
|
+
gap: 6px;
|
|
3194
|
+
margin-top: 8px;
|
|
3195
|
+
}
|
|
3196
|
+
|
|
3197
|
+
.auth-profile-row {
|
|
3198
|
+
display: flex;
|
|
3199
|
+
flex-direction: column;
|
|
3200
|
+
gap: 2px;
|
|
3201
|
+
padding-bottom: 4px;
|
|
3202
|
+
border-bottom: 1px dashed rgba(160, 145, 130, 0.25);
|
|
3203
|
+
}
|
|
3204
|
+
|
|
3205
|
+
.auth-profile-row:last-child {
|
|
3206
|
+
border-bottom: none;
|
|
3207
|
+
padding-bottom: 0;
|
|
3208
|
+
}
|
|
3209
|
+
|
|
2865
3210
|
.session-preview {
|
|
2866
3211
|
border-radius: var(--radius-lg);
|
|
2867
3212
|
}
|