loadtoagent 1.3.1 → 1.3.2
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.ko.md +11 -9
- package/docs/PROVIDER-CONTRACTS.md +8 -6
- package/main.js +25 -3
- package/package.json +1 -1
- package/preload.js +7 -2
- package/renderer/app-dashboard.js +18 -12
- package/renderer/app-graph-view.js +1 -1
- package/renderer/app-management.js +91 -45
- package/renderer/app-run-modal.js +1 -1
- package/renderer/app.js +1 -1
- package/renderer/i18n-messages.js +212 -199
- package/renderer/index.html +28 -27
- package/renderer/styles-agent-map.css +10 -10
- package/renderer/styles-cards.css +19 -19
- package/renderer/styles-collaboration.css +23 -23
- package/renderer/styles-components.css +36 -36
- package/renderer/styles-management.css +23 -14
- package/renderer/styles-onboarding.css +8 -8
- package/renderer/styles-overlays.css +5 -5
- package/renderer/styles-product.css +24 -24
- package/renderer/styles-quality.css +4 -4
- package/renderer/styles-readability.css +179 -1
- package/renderer/styles-responsive-runtime.css +5 -5
- package/renderer/styles-responsive-workflows.css +2 -2
- package/renderer/styles-run-composer.css +23 -23
- package/renderer/styles-runtime-overview.css +22 -22
- package/renderer/styles-settings.css +21 -21
- package/renderer/styles-terminal.css +66 -66
- package/renderer/styles-tmux.css +49 -49
- package/renderer/styles-workflows.css +48 -48
- package/renderer/styles.css +7 -7
- package/renderer/terminal-events.js +34 -11
- package/renderer/terminal-workbench.js +52 -21
- package/renderer/terminal.js +9 -1
- package/src/contracts.js +5 -5
- package/src/ipc/registerTerminalIpc.js +6 -14
- package/src/sessionIntelligence.js +18 -4
- package/src/terminalHost.js +98 -26
- package/src/terminalHostDaemon.js +1 -0
- package/src/terminalManager.js +61 -4
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
display: block;
|
|
68
68
|
margin-top: 4px;
|
|
69
69
|
color: #718c85;
|
|
70
|
-
font-size:
|
|
70
|
+
font-size: 12px;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
.update-notice button {
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
border-radius: 9px;
|
|
78
78
|
background: #153d31;
|
|
79
79
|
color: #88ebc8;
|
|
80
|
-
font-size:
|
|
80
|
+
font-size: 12px;
|
|
81
81
|
font-weight: 750;
|
|
82
82
|
cursor: pointer;
|
|
83
83
|
}
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
.language-settings-copy>span {
|
|
187
187
|
display: block;
|
|
188
188
|
color: #5d857a;
|
|
189
|
-
font-size:
|
|
189
|
+
font-size: 12px;
|
|
190
190
|
font-weight: 850;
|
|
191
191
|
letter-spacing: .13em;
|
|
192
192
|
text-transform: uppercase;
|
|
@@ -195,7 +195,7 @@
|
|
|
195
195
|
.language-select>span {
|
|
196
196
|
display: block;
|
|
197
197
|
color: #5d857a;
|
|
198
|
-
font-size:
|
|
198
|
+
font-size: 12px;
|
|
199
199
|
font-weight: 850;
|
|
200
200
|
letter-spacing: .13em;
|
|
201
201
|
text-transform: uppercase;
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
.language-settings-copy p {
|
|
212
212
|
margin: 6px 0 0;
|
|
213
213
|
color: #71838c;
|
|
214
|
-
font-size:
|
|
214
|
+
font-size: 12px;
|
|
215
215
|
line-height: 1.55;
|
|
216
216
|
}
|
|
217
217
|
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
|
|
258
258
|
.provider-visibility-copy>span {
|
|
259
259
|
color: #5d857a;
|
|
260
|
-
font-size:
|
|
260
|
+
font-size: 12px;
|
|
261
261
|
font-weight: 850;
|
|
262
262
|
letter-spacing: .13em;
|
|
263
263
|
text-transform: uppercase;
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
max-width: 420px;
|
|
274
274
|
margin: 7px 0 0;
|
|
275
275
|
color: #82959d;
|
|
276
|
-
font-size:
|
|
276
|
+
font-size: 12px;
|
|
277
277
|
line-height: 1.65;
|
|
278
278
|
}
|
|
279
279
|
|
|
@@ -313,7 +313,7 @@
|
|
|
313
313
|
.provider-visibility-option .provider-mark {
|
|
314
314
|
width: 36px;
|
|
315
315
|
height: 36px;
|
|
316
|
-
font-size:
|
|
316
|
+
font-size: 12px;
|
|
317
317
|
}
|
|
318
318
|
|
|
319
319
|
.provider-visibility-name {
|
|
@@ -336,12 +336,12 @@
|
|
|
336
336
|
.provider-visibility-name small {
|
|
337
337
|
margin-top: 4px;
|
|
338
338
|
color: #6f818a;
|
|
339
|
-
font-size:
|
|
339
|
+
font-size: 12px;
|
|
340
340
|
}
|
|
341
341
|
|
|
342
342
|
.provider-visibility-status {
|
|
343
343
|
color: color-mix(in srgb,var(--provider) 72%,#a8bbb9);
|
|
344
|
-
font-size:
|
|
344
|
+
font-size: 12px;
|
|
345
345
|
font-weight: 750;
|
|
346
346
|
}
|
|
347
347
|
|
|
@@ -422,7 +422,7 @@
|
|
|
422
422
|
|
|
423
423
|
.version-node span {
|
|
424
424
|
color: #687b89;
|
|
425
|
-
font-size:
|
|
425
|
+
font-size: 12px;
|
|
426
426
|
font-weight: 800;
|
|
427
427
|
letter-spacing: .1em;
|
|
428
428
|
text-transform: uppercase;
|
|
@@ -464,7 +464,7 @@
|
|
|
464
464
|
.version-connector span {
|
|
465
465
|
color: #50786d;
|
|
466
466
|
font-family: "Geist Mono","Cascadia Code",Consolas,monospace;
|
|
467
|
-
font-size:
|
|
467
|
+
font-size: 12px;
|
|
468
468
|
font-weight: 800;
|
|
469
469
|
letter-spacing: .13em;
|
|
470
470
|
white-space: nowrap;
|
|
@@ -492,7 +492,7 @@
|
|
|
492
492
|
|
|
493
493
|
.update-state-copy span {
|
|
494
494
|
color: #687c89;
|
|
495
|
-
font-size:
|
|
495
|
+
font-size: 12px;
|
|
496
496
|
font-weight: 850;
|
|
497
497
|
letter-spacing: .13em;
|
|
498
498
|
}
|
|
@@ -549,7 +549,7 @@
|
|
|
549
549
|
align-items: center;
|
|
550
550
|
justify-content: space-between;
|
|
551
551
|
color: #83a79c;
|
|
552
|
-
font-size:
|
|
552
|
+
font-size: 12px;
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
.update-progress>div:first-child b {
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
display: block;
|
|
580
580
|
margin-top: 7px;
|
|
581
581
|
color: #58756c;
|
|
582
|
-
font-size:
|
|
582
|
+
font-size: 12px;
|
|
583
583
|
}
|
|
584
584
|
|
|
585
585
|
.update-error {
|
|
@@ -589,7 +589,7 @@
|
|
|
589
589
|
border-radius: 10px;
|
|
590
590
|
background: #25171b;
|
|
591
591
|
color: #e7959b;
|
|
592
|
-
font-size:
|
|
592
|
+
font-size: 12px;
|
|
593
593
|
line-height: 1.55;
|
|
594
594
|
}
|
|
595
595
|
|
|
@@ -611,7 +611,7 @@
|
|
|
611
611
|
border: 0;
|
|
612
612
|
background: transparent;
|
|
613
613
|
color: #67caa9;
|
|
614
|
-
font-size:
|
|
614
|
+
font-size: 12px;
|
|
615
615
|
cursor: pointer;
|
|
616
616
|
}
|
|
617
617
|
|
|
@@ -676,22 +676,22 @@
|
|
|
676
676
|
color: #57746b;
|
|
677
677
|
font-weight: 850;
|
|
678
678
|
letter-spacing: .11em;
|
|
679
|
-
font-size:
|
|
679
|
+
font-size: 12px;
|
|
680
680
|
}
|
|
681
681
|
|
|
682
682
|
.version-node>span {
|
|
683
|
-
font-size:
|
|
683
|
+
font-size: 12px;
|
|
684
684
|
}
|
|
685
685
|
|
|
686
686
|
.update-state-copy>span {
|
|
687
|
-
font-size:
|
|
687
|
+
font-size: 12px;
|
|
688
688
|
}
|
|
689
689
|
|
|
690
690
|
.release-notes>div span {
|
|
691
691
|
color: #5e756f;
|
|
692
692
|
font-weight: 850;
|
|
693
693
|
letter-spacing: .13em;
|
|
694
|
-
font-size:
|
|
694
|
+
font-size: 12px;
|
|
695
695
|
}
|
|
696
696
|
|
|
697
697
|
.settings-meta-grid b {
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
|
|
223
223
|
.terminal-history-message header time {
|
|
224
224
|
color: #536678;
|
|
225
|
-
font-size:
|
|
225
|
+
font-size: 12px;
|
|
226
226
|
}
|
|
227
227
|
|
|
228
228
|
.terminal-history-empty {
|
|
@@ -237,13 +237,13 @@
|
|
|
237
237
|
|
|
238
238
|
.terminal-history-empty b {
|
|
239
239
|
color: #a9b8c4;
|
|
240
|
-
font-size:
|
|
240
|
+
font-size: 12px;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
.terminal-history-empty span {
|
|
244
244
|
margin-top: 6px;
|
|
245
245
|
color: #607183;
|
|
246
|
-
font-size:
|
|
246
|
+
font-size: 12px;
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
.terminal-screen .xterm-viewport {
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
color: #aebbc8;
|
|
292
292
|
font-weight: 650;
|
|
293
293
|
cursor: pointer;
|
|
294
|
-
font-size:
|
|
294
|
+
font-size: 12px;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
297
|
.terminal-controlbar button {
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
color: #aebbc8;
|
|
304
304
|
font-weight: 650;
|
|
305
305
|
cursor: pointer;
|
|
306
|
-
font-size:
|
|
306
|
+
font-size: 12px;
|
|
307
307
|
}
|
|
308
308
|
|
|
309
309
|
.terminal-resource-head button {
|
|
@@ -316,7 +316,7 @@
|
|
|
316
316
|
color: #aebbc8;
|
|
317
317
|
font-weight: 650;
|
|
318
318
|
cursor: pointer;
|
|
319
|
-
font-size:
|
|
319
|
+
font-size: 12px;
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
.terminal-resource-head>div b {
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
display: block;
|
|
330
330
|
margin-top: 3px;
|
|
331
331
|
color: #667689;
|
|
332
|
-
font-size:
|
|
332
|
+
font-size: 12px;
|
|
333
333
|
}
|
|
334
334
|
|
|
335
335
|
.terminal-tab span {
|
|
@@ -345,13 +345,13 @@
|
|
|
345
345
|
text-overflow: ellipsis;
|
|
346
346
|
white-space: nowrap;
|
|
347
347
|
color: #667688;
|
|
348
|
-
font-size:
|
|
348
|
+
font-size: 12px;
|
|
349
349
|
}
|
|
350
350
|
|
|
351
351
|
.terminal-command-form label {
|
|
352
352
|
color: #70d5b1;
|
|
353
353
|
font-weight: 700;
|
|
354
|
-
font-size:
|
|
354
|
+
font-size: 12px;
|
|
355
355
|
}
|
|
356
356
|
|
|
357
357
|
.terminal-history-panel.collapsed .terminal-history-head {
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
align-items: center;
|
|
397
397
|
gap: 5px;
|
|
398
398
|
color: #5fdcaf;
|
|
399
|
-
font-size:
|
|
399
|
+
font-size: 12px;
|
|
400
400
|
font-weight: 800;
|
|
401
401
|
letter-spacing: .08em;
|
|
402
402
|
}
|
|
@@ -478,7 +478,7 @@
|
|
|
478
478
|
border-radius: 10px;
|
|
479
479
|
background: #14232e;
|
|
480
480
|
color: #75d9ee;
|
|
481
|
-
font-size:
|
|
481
|
+
font-size: 12px;
|
|
482
482
|
}
|
|
483
483
|
|
|
484
484
|
.terminal-session-item.active .terminal-session-icon {
|
|
@@ -503,7 +503,7 @@
|
|
|
503
503
|
white-space: nowrap;
|
|
504
504
|
margin-top: 4px;
|
|
505
505
|
color: #7e8ea0;
|
|
506
|
-
font-size:
|
|
506
|
+
font-size: 12px;
|
|
507
507
|
}
|
|
508
508
|
|
|
509
509
|
.terminal-session-item em {
|
|
@@ -514,7 +514,7 @@
|
|
|
514
514
|
margin-top: 4px;
|
|
515
515
|
color: #506274;
|
|
516
516
|
font-family: "Cascadia Code",Consolas,monospace;
|
|
517
|
-
font-size:
|
|
517
|
+
font-size: 12px;
|
|
518
518
|
font-style: normal;
|
|
519
519
|
}
|
|
520
520
|
|
|
@@ -528,7 +528,7 @@
|
|
|
528
528
|
|
|
529
529
|
.terminal-resource-empty {
|
|
530
530
|
color: #58687a;
|
|
531
|
-
font-size:
|
|
531
|
+
font-size: 12px;
|
|
532
532
|
line-height: 1.5;
|
|
533
533
|
margin: 4px;
|
|
534
534
|
padding: 22px 12px;
|
|
@@ -567,14 +567,14 @@
|
|
|
567
567
|
.terminal-resource-tip b {
|
|
568
568
|
display: block;
|
|
569
569
|
color: #afc7c3;
|
|
570
|
-
font-size:
|
|
570
|
+
font-size: 12px;
|
|
571
571
|
}
|
|
572
572
|
|
|
573
573
|
.terminal-resource-tip small {
|
|
574
574
|
display: block;
|
|
575
575
|
margin-top: 4px;
|
|
576
576
|
color: #647b7a;
|
|
577
|
-
font-size:
|
|
577
|
+
font-size: 12px;
|
|
578
578
|
line-height: 1.45;
|
|
579
579
|
}
|
|
580
580
|
|
|
@@ -617,7 +617,7 @@
|
|
|
617
617
|
background: #12272b;
|
|
618
618
|
color: #70dfbd;
|
|
619
619
|
font-family: "Cascadia Code",Consolas,monospace;
|
|
620
|
-
font-size:
|
|
620
|
+
font-size: 12px;
|
|
621
621
|
font-weight: 800;
|
|
622
622
|
}
|
|
623
623
|
|
|
@@ -643,7 +643,7 @@
|
|
|
643
643
|
max-width: 640px;
|
|
644
644
|
margin-top: 5px;
|
|
645
645
|
color: #708294;
|
|
646
|
-
font-size:
|
|
646
|
+
font-size: 12px;
|
|
647
647
|
}
|
|
648
648
|
|
|
649
649
|
.terminal-workspace-actions {
|
|
@@ -665,7 +665,7 @@
|
|
|
665
665
|
border-radius: 999px;
|
|
666
666
|
background: #101922;
|
|
667
667
|
color: #7e8c9b;
|
|
668
|
-
font-size:
|
|
668
|
+
font-size: 12px;
|
|
669
669
|
font-weight: 700;
|
|
670
670
|
}
|
|
671
671
|
|
|
@@ -722,7 +722,7 @@
|
|
|
722
722
|
padding: 0 9px;
|
|
723
723
|
border-color: #2a3b48;
|
|
724
724
|
background: #101922;
|
|
725
|
-
font-size:
|
|
725
|
+
font-size: 12px;
|
|
726
726
|
}
|
|
727
727
|
|
|
728
728
|
.terminal-key-actions kbd {
|
|
@@ -732,7 +732,7 @@
|
|
|
732
732
|
background: #0a1118;
|
|
733
733
|
color: #8292a2;
|
|
734
734
|
font-family: inherit;
|
|
735
|
-
font-size:
|
|
735
|
+
font-size: 12px;
|
|
736
736
|
font-weight: 700;
|
|
737
737
|
}
|
|
738
738
|
|
|
@@ -796,7 +796,7 @@
|
|
|
796
796
|
text-transform: uppercase;
|
|
797
797
|
letter-spacing: .08em;
|
|
798
798
|
color: #62dcba;
|
|
799
|
-
font-size:
|
|
799
|
+
font-size: 12px;
|
|
800
800
|
}
|
|
801
801
|
|
|
802
802
|
.terminal-history-head b {
|
|
@@ -816,7 +816,7 @@
|
|
|
816
816
|
white-space: nowrap;
|
|
817
817
|
margin-top: 3px;
|
|
818
818
|
color: #657789;
|
|
819
|
-
font-size:
|
|
819
|
+
font-size: 12px;
|
|
820
820
|
}
|
|
821
821
|
|
|
822
822
|
.terminal-history-list {
|
|
@@ -855,13 +855,13 @@
|
|
|
855
855
|
|
|
856
856
|
.terminal-subagent-progress>header b {
|
|
857
857
|
color: #92ecd0;
|
|
858
|
-
font-size:
|
|
858
|
+
font-size: 12px;
|
|
859
859
|
}
|
|
860
860
|
|
|
861
861
|
.terminal-subagent-progress>header span {
|
|
862
862
|
margin-top: 3px;
|
|
863
863
|
color: #718b89;
|
|
864
|
-
font-size:
|
|
864
|
+
font-size: 12px;
|
|
865
865
|
line-height: 1.4;
|
|
866
866
|
}
|
|
867
867
|
|
|
@@ -869,7 +869,7 @@
|
|
|
869
869
|
flex: 0 0 auto;
|
|
870
870
|
max-width: 48%;
|
|
871
871
|
color: #7e9d98;
|
|
872
|
-
font-size:
|
|
872
|
+
font-size: 12px;
|
|
873
873
|
line-height: 1.4;
|
|
874
874
|
text-align: right;
|
|
875
875
|
}
|
|
@@ -916,14 +916,14 @@
|
|
|
916
916
|
|
|
917
917
|
.terminal-subagent-card>header span {
|
|
918
918
|
color: #d8e8e4;
|
|
919
|
-
font-size:
|
|
919
|
+
font-size: 12px;
|
|
920
920
|
font-weight: 750;
|
|
921
921
|
}
|
|
922
922
|
|
|
923
923
|
.terminal-subagent-card>header small {
|
|
924
924
|
margin-top: 2px;
|
|
925
925
|
color: #687d84;
|
|
926
|
-
font-size:
|
|
926
|
+
font-size: 12px;
|
|
927
927
|
}
|
|
928
928
|
|
|
929
929
|
.terminal-subagent-card>header>b {
|
|
@@ -932,7 +932,7 @@
|
|
|
932
932
|
border: 1px solid #3b4c52;
|
|
933
933
|
border-radius: 999px;
|
|
934
934
|
color: #94a3aa;
|
|
935
|
-
font-size:
|
|
935
|
+
font-size: 12px;
|
|
936
936
|
font-weight: 700;
|
|
937
937
|
}
|
|
938
938
|
|
|
@@ -955,7 +955,7 @@
|
|
|
955
955
|
gap: 7px;
|
|
956
956
|
margin-top: 7px;
|
|
957
957
|
color: #a8b9bd;
|
|
958
|
-
font-size:
|
|
958
|
+
font-size: 12px;
|
|
959
959
|
line-height: 1.45;
|
|
960
960
|
}
|
|
961
961
|
|
|
@@ -1004,19 +1004,19 @@
|
|
|
1004
1004
|
|
|
1005
1005
|
.terminal-subagent-card>ol li b {
|
|
1006
1006
|
color: #90aba7;
|
|
1007
|
-
font-size:
|
|
1007
|
+
font-size: 12px;
|
|
1008
1008
|
}
|
|
1009
1009
|
|
|
1010
1010
|
.terminal-subagent-card>ol li span {
|
|
1011
1011
|
margin-top: 2px;
|
|
1012
1012
|
color: #829399;
|
|
1013
|
-
font-size:
|
|
1013
|
+
font-size: 12px;
|
|
1014
1014
|
line-height: 1.4;
|
|
1015
1015
|
}
|
|
1016
1016
|
|
|
1017
1017
|
.terminal-subagent-card>ol li time {
|
|
1018
1018
|
color: #536a70;
|
|
1019
|
-
font-size:
|
|
1019
|
+
font-size: 12px;
|
|
1020
1020
|
}
|
|
1021
1021
|
|
|
1022
1022
|
.terminal-history-empty.with-subagents {
|
|
@@ -1035,7 +1035,7 @@
|
|
|
1035
1035
|
|
|
1036
1036
|
.terminal-history-message header b {
|
|
1037
1037
|
color: #75dfba;
|
|
1038
|
-
font-size:
|
|
1038
|
+
font-size: 12px;
|
|
1039
1039
|
}
|
|
1040
1040
|
|
|
1041
1041
|
.terminal-history-message p {
|
|
@@ -1044,7 +1044,7 @@
|
|
|
1044
1044
|
white-space: pre-wrap;
|
|
1045
1045
|
overflow: auto;
|
|
1046
1046
|
max-height: 180px;
|
|
1047
|
-
font-size:
|
|
1047
|
+
font-size: 12px;
|
|
1048
1048
|
line-height: 1.58;
|
|
1049
1049
|
}
|
|
1050
1050
|
|
|
@@ -1056,7 +1056,7 @@
|
|
|
1056
1056
|
min-height: 40px;
|
|
1057
1057
|
padding: 0 13px;
|
|
1058
1058
|
color: #79cdb4;
|
|
1059
|
-
font-size:
|
|
1059
|
+
font-size: 12px;
|
|
1060
1060
|
line-height: 1.3;
|
|
1061
1061
|
}
|
|
1062
1062
|
|
|
@@ -1093,7 +1093,7 @@
|
|
|
1093
1093
|
text-overflow: ellipsis;
|
|
1094
1094
|
white-space: nowrap;
|
|
1095
1095
|
color: #d6e1e8;
|
|
1096
|
-
font-size:
|
|
1096
|
+
font-size: 12px;
|
|
1097
1097
|
}
|
|
1098
1098
|
|
|
1099
1099
|
.terminal-console-head small {
|
|
@@ -1103,7 +1103,7 @@
|
|
|
1103
1103
|
white-space: nowrap;
|
|
1104
1104
|
margin-top: 3px;
|
|
1105
1105
|
color: #607485;
|
|
1106
|
-
font-size:
|
|
1106
|
+
font-size: 12px;
|
|
1107
1107
|
}
|
|
1108
1108
|
|
|
1109
1109
|
.terminal-console-pulse {
|
|
@@ -1121,7 +1121,7 @@
|
|
|
1121
1121
|
border-radius: 7px;
|
|
1122
1122
|
background: #121c25;
|
|
1123
1123
|
color: #718394;
|
|
1124
|
-
font-size:
|
|
1124
|
+
font-size: 12px;
|
|
1125
1125
|
font-weight: 700;
|
|
1126
1126
|
}
|
|
1127
1127
|
|
|
@@ -1185,7 +1185,7 @@
|
|
|
1185
1185
|
|
|
1186
1186
|
.terminal-empty p {
|
|
1187
1187
|
margin: 8px 20px 0;
|
|
1188
|
-
font-size:
|
|
1188
|
+
font-size: 12px;
|
|
1189
1189
|
line-height: 1.55;
|
|
1190
1190
|
max-width: 420px;
|
|
1191
1191
|
color: #718294;
|
|
@@ -1211,12 +1211,12 @@
|
|
|
1211
1211
|
|
|
1212
1212
|
.terminal-command-form .terminal-command-label label {
|
|
1213
1213
|
color: #8adfc3;
|
|
1214
|
-
font-size:
|
|
1214
|
+
font-size: 12px;
|
|
1215
1215
|
}
|
|
1216
1216
|
|
|
1217
1217
|
.terminal-command-label>span {
|
|
1218
1218
|
color: #576a7b;
|
|
1219
|
-
font-size:
|
|
1219
|
+
font-size: 12px;
|
|
1220
1220
|
}
|
|
1221
1221
|
|
|
1222
1222
|
.terminal-command-composer {
|
|
@@ -1241,7 +1241,7 @@
|
|
|
1241
1241
|
justify-self: end;
|
|
1242
1242
|
padding: 0 5px 2px;
|
|
1243
1243
|
color: #607487;
|
|
1244
|
-
font-size:
|
|
1244
|
+
font-size: 12px;
|
|
1245
1245
|
font-variant-numeric: tabular-nums;
|
|
1246
1246
|
}
|
|
1247
1247
|
|
|
@@ -1266,7 +1266,7 @@
|
|
|
1266
1266
|
|
|
1267
1267
|
.terminal-command-form button {
|
|
1268
1268
|
border: 1px solid #36775f;
|
|
1269
|
-
font-size:
|
|
1269
|
+
font-size: 12px;
|
|
1270
1270
|
font-weight: 700;
|
|
1271
1271
|
cursor: pointer;
|
|
1272
1272
|
height: 38px;
|
|
@@ -1297,7 +1297,7 @@
|
|
|
1297
1297
|
padding: 0 13px;
|
|
1298
1298
|
border-top-color: #14222a;
|
|
1299
1299
|
background: #081017;
|
|
1300
|
-
font-size:
|
|
1300
|
+
font-size: 12px;
|
|
1301
1301
|
}
|
|
1302
1302
|
|
|
1303
1303
|
.terminal-notice-dot {
|
|
@@ -1322,7 +1322,7 @@
|
|
|
1322
1322
|
margin-top: 6px;
|
|
1323
1323
|
overflow: visible;
|
|
1324
1324
|
color: #b8c5cf;
|
|
1325
|
-
font-size:
|
|
1325
|
+
font-size: 12px;
|
|
1326
1326
|
line-height: 1.55;
|
|
1327
1327
|
}
|
|
1328
1328
|
|
|
@@ -1465,8 +1465,8 @@ body[data-current-view="terminal"] .topbar h1 {
|
|
|
1465
1465
|
}
|
|
1466
1466
|
|
|
1467
1467
|
.terminal-resource-head>div b { color: #eef5f7; font-size: 14px; }
|
|
1468
|
-
.terminal-resource-head>div span { margin-top: 5px; color: #93a6b2; font-size:
|
|
1469
|
-
.terminal-resource-live { font-size:
|
|
1468
|
+
.terminal-resource-head>div span { margin-top: 5px; color: #93a6b2; font-size: 12px; }
|
|
1469
|
+
.terminal-resource-live { font-size: 12px; }
|
|
1470
1470
|
.terminal-session-list { gap: 9px; padding: 12px; }
|
|
1471
1471
|
.terminal-session-row { grid-template-columns: minmax(0,1fr) 28px; gap: 5px; }
|
|
1472
1472
|
|
|
@@ -1486,10 +1486,10 @@ body[data-current-view="terminal"] .topbar h1 {
|
|
|
1486
1486
|
.terminal-session-item[data-status="failed"] { border-color: #58323c; border-left-color: #ef7d8e; }
|
|
1487
1487
|
.terminal-session-item[data-status="completed"] { border-left-color: #6cbdd1; }
|
|
1488
1488
|
.terminal-session-item.active { border-color: #438d77; border-left-color: #62e1b7; box-shadow: inset 2px 0 #62e1b7,0 9px 24px rgba(0,0,0,.2); }
|
|
1489
|
-
.terminal-session-icon { width: 42px; height: 42px; font-size:
|
|
1489
|
+
.terminal-session-icon { width: 42px; height: 42px; font-size: 12px; }
|
|
1490
1490
|
.terminal-session-item b { color: #edf4f6; font-size: 13px; }
|
|
1491
|
-
.terminal-session-item small { color: #9aaab5; font-size:
|
|
1492
|
-
.terminal-session-item em { color: #718391; font-size:
|
|
1491
|
+
.terminal-session-item small { color: #9aaab5; font-size: 12px; }
|
|
1492
|
+
.terminal-session-item em { color: #718391; font-size: 12px; }
|
|
1493
1493
|
|
|
1494
1494
|
.terminal-session-status {
|
|
1495
1495
|
display: inline-flex;
|
|
@@ -1502,7 +1502,7 @@ body[data-current-view="terminal"] .topbar h1 {
|
|
|
1502
1502
|
border-radius: 999px;
|
|
1503
1503
|
color: #a7b6bf;
|
|
1504
1504
|
background: #111c24;
|
|
1505
|
-
font-size:
|
|
1505
|
+
font-size: 12px;
|
|
1506
1506
|
font-weight: 750;
|
|
1507
1507
|
white-space: nowrap;
|
|
1508
1508
|
}
|
|
@@ -1518,33 +1518,33 @@ body[data-current-view="terminal"] .topbar h1 {
|
|
|
1518
1518
|
.terminal-session-status[data-status="completed"] i { background: #72c9dc; }
|
|
1519
1519
|
|
|
1520
1520
|
.terminal-controlbar { min-height: 72px; padding: 11px 16px; }
|
|
1521
|
-
.terminal-target-icon { width: 44px; height: 44px; font-size:
|
|
1521
|
+
.terminal-target-icon { width: 44px; height: 44px; font-size: 12px; }
|
|
1522
1522
|
.terminal-target-meta b { color: #eef5f7; font-size: 15px; }
|
|
1523
|
-
.terminal-target-meta span { margin-top: 6px; color: #8fa1af; font-size:
|
|
1524
|
-
.terminal-connection-state { min-height: 32px; font-size:
|
|
1523
|
+
.terminal-target-meta span { margin-top: 6px; color: #8fa1af; font-size: 12px; }
|
|
1524
|
+
.terminal-connection-state { min-height: 32px; font-size: 12px; }
|
|
1525
1525
|
.terminal-connection-state[data-status="attention"] { border-color: #6f5133; color: #f2b66e; background: #291f14; }
|
|
1526
1526
|
.terminal-connection-state[data-status="attention"] i { background: #ffbb62; box-shadow: 0 0 9px rgba(255,187,98,.52); }
|
|
1527
1527
|
.terminal-connection-state[data-status="completed"] { border-color: #355f69; color: #8bd3e2; background: #10242a; }
|
|
1528
1528
|
.terminal-connection-state[data-status="completed"] i { background: #70cadd; }
|
|
1529
|
-
.terminal-controlbar .terminal-key-actions button { height: 34px; font-size:
|
|
1529
|
+
.terminal-controlbar .terminal-key-actions button { height: 34px; font-size: 12px; }
|
|
1530
1530
|
|
|
1531
1531
|
.terminal-stage { grid-template-columns: minmax(330px,40%) minmax(0,1fr); }
|
|
1532
1532
|
.terminal-history-head { min-height: 76px; padding: 12px 13px 12px 16px; }
|
|
1533
|
-
.terminal-history-head span { font-size:
|
|
1533
|
+
.terminal-history-head span { font-size: 12px; }
|
|
1534
1534
|
.terminal-history-head b { font-size: 14px; }
|
|
1535
|
-
.terminal-history-head small { color: #8294a2; font-size:
|
|
1535
|
+
.terminal-history-head small { color: #8294a2; font-size: 12px; }
|
|
1536
1536
|
.terminal-history-list { padding: 14px; }
|
|
1537
1537
|
.terminal-history-message { padding: 12px 13px; border-color: #263944; }
|
|
1538
|
-
.terminal-history-message header b { font-size:
|
|
1538
|
+
.terminal-history-message header b { font-size: 12px; }
|
|
1539
1539
|
.terminal-history-message p,.terminal-history-copy { color: #cad5dc; font-size: 12px; line-height: 1.66; }
|
|
1540
|
-
.terminal-history-panel footer { min-height: 42px; color: #8dd9c1; font-size:
|
|
1540
|
+
.terminal-history-panel footer { min-height: 42px; color: #8dd9c1; font-size: 12px; }
|
|
1541
1541
|
|
|
1542
1542
|
.terminal-console-head { min-height: 58px; padding: 9px 14px; border-bottom-color: #263844; background: #0b141b; }
|
|
1543
1543
|
.terminal-console-title { display: flex; align-items: center; gap: 10px; min-width: 0; }
|
|
1544
1544
|
.terminal-console-head b { color: #edf4f6; font-size: 13px; }
|
|
1545
|
-
.terminal-console-head small { color: #8496a4; font-size:
|
|
1545
|
+
.terminal-console-head small { color: #8496a4; font-size: 12px; }
|
|
1546
1546
|
.terminal-console-tools { display: flex; align-items: center; justify-content: flex-end; gap: 8px; min-width: 0; }
|
|
1547
|
-
.terminal-console-state { padding: 6px 9px; font-size:
|
|
1547
|
+
.terminal-console-state { padding: 6px 9px; font-size: 12px; }
|
|
1548
1548
|
.terminal-console-state[data-status="attention"] { color: #f2b56f; background: #2b2014; }
|
|
1549
1549
|
.terminal-console-state[data-status="completed"] { color: #8bd4e3; background: #11262c; }
|
|
1550
1550
|
|
|
@@ -1553,7 +1553,7 @@ body[data-current-view="terminal"] .topbar h1 {
|
|
|
1553
1553
|
.terminal-font-controls button:hover:not(:disabled),.terminal-font-controls button:focus-visible { color: #8aefd0; background: #14252a; outline: none; }
|
|
1554
1554
|
.terminal-font-controls button:disabled { opacity: .32; cursor: default; }
|
|
1555
1555
|
.terminal-font-controls output { color: #8fa2ae; font: 750 10px/1 var(--font-mono,"Cascadia Code",monospace); text-align: center; }
|
|
1556
|
-
.terminal-focus-button { display: inline-flex; min-height: 32px; align-items: center; gap: 7px; padding: 0 10px; border: 1px solid #335248; border-radius: 8px; color: #9bdcc8; background: #10231f; font-size:
|
|
1556
|
+
.terminal-focus-button { display: inline-flex; min-height: 32px; align-items: center; gap: 7px; padding: 0 10px; border: 1px solid #335248; border-radius: 8px; color: #9bdcc8; background: #10231f; font-size: 12px; font-weight: 750; cursor: pointer; }
|
|
1557
1557
|
.terminal-focus-button b { color: inherit; font-size: 13px; }
|
|
1558
1558
|
.terminal-focus-button:hover,.terminal-focus-button:focus-visible,.terminal-focus-button[aria-pressed="true"] { border-color: #4c9c83; color: #96f0d1; background: #16342b; outline: none; }
|
|
1559
1559
|
|
|
@@ -1561,12 +1561,12 @@ body[data-current-view="terminal"] .topbar h1 {
|
|
|
1561
1561
|
.terminal-screen { inset: 15px; }
|
|
1562
1562
|
.terminal-screen .xterm { padding: 5px; }
|
|
1563
1563
|
.terminal-command-form { gap: 8px; padding: 11px 14px 12px; }
|
|
1564
|
-
.terminal-command-form .terminal-command-label label { font-size:
|
|
1565
|
-
.terminal-command-label>span { color: #718391; font-size:
|
|
1564
|
+
.terminal-command-form .terminal-command-label label { font-size: 12px; }
|
|
1565
|
+
.terminal-command-label>span { color: #718391; font-size: 12px; }
|
|
1566
1566
|
.terminal-command-composer { padding: 6px; border-color: #38505c; }
|
|
1567
1567
|
.terminal-command-form textarea { min-height: 48px; color: #edf3f7; font-size: 13px; line-height: 1.55; }
|
|
1568
1568
|
.terminal-command-form button { height: 40px; font-size: 12px; }
|
|
1569
|
-
.terminal-notice { min-height: 30px; color: #8293a0; font-size:
|
|
1569
|
+
.terminal-notice { min-height: 30px; color: #8293a0; font-size: 12px; }
|
|
1570
1570
|
|
|
1571
1571
|
#terminalSection.terminal-focus-mode .terminal-layout { display: grid!important; grid-template-columns: minmax(0,1fr)!important; }
|
|
1572
1572
|
#terminalSection.terminal-focus-mode .terminal-resource-panel,
|