loadtoagent 1.1.0 → 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 +14 -5
- package/README.md +7 -0
- package/README.zh-CN.md +7 -0
- package/docs/PROVIDER-CONTRACTS.md +25 -1
- package/docs/UI-AUDIT-100.md +118 -0
- package/docs/UI-AUDIT-101-200.md +120 -0
- package/docs/UI-AUDIT-201-300.md +120 -0
- package/main.js +157 -38
- package/package.json +13 -4
- package/preload.js +13 -2
- package/renderer/app-agent-actions.js +125 -53
- package/renderer/app-bootstrap.js +54 -19
- package/renderer/app-dashboard.js +196 -55
- package/renderer/app-drawer-content.js +48 -44
- package/renderer/app-drawer-data.js +26 -13
- package/renderer/app-drawer.js +72 -54
- package/renderer/app-events-dialogs.js +146 -37
- package/renderer/app-events-filters.js +172 -13
- package/renderer/app-events-navigation.js +77 -30
- package/renderer/app-events-sessions.js +156 -9
- package/renderer/app-events.js +2 -1
- package/renderer/app-graph-model.js +20 -38
- package/renderer/app-graph-orchestration.js +15 -13
- package/renderer/app-graph-view.js +228 -113
- package/renderer/app-management.js +257 -0
- package/renderer/app-provider-visibility.js +124 -0
- package/renderer/app-quality.js +568 -0
- package/renderer/app-run-modal.js +104 -34
- package/renderer/app-runtime-overview.js +312 -0
- package/renderer/app-session-render.js +94 -37
- package/renderer/app-tmux-render.js +52 -44
- package/renderer/app.js +153 -75
- package/renderer/i18n-messages.js +867 -37
- package/renderer/i18n.js +104 -0
- package/renderer/index.html +154 -67
- package/renderer/shared.js +17 -0
- package/renderer/styles-agent-map.css +16 -10
- package/renderer/styles-cards.css +44 -18
- package/renderer/styles-collaboration.css +23 -23
- package/renderer/styles-components.css +122 -45
- package/renderer/styles-management.css +364 -0
- package/renderer/styles-onboarding.css +8 -8
- package/renderer/styles-overlays.css +13 -7
- package/renderer/styles-product.css +48 -40
- package/renderer/styles-quality.css +312 -0
- package/renderer/styles-readability.css +1040 -0
- package/renderer/styles-responsive-product.css +84 -12
- package/renderer/styles-responsive-runtime.css +25 -17
- package/renderer/styles-responsive-shell.css +44 -48
- package/renderer/styles-responsive-workflows.css +39 -5
- package/renderer/styles-run-composer.css +28 -23
- package/renderer/styles-runtime-overview.css +285 -0
- package/renderer/styles-settings.css +176 -16
- package/renderer/styles-terminal.css +374 -37
- package/renderer/styles-tmux.css +49 -49
- package/renderer/styles-workflow-map.css +362 -15
- package/renderer/styles-workflows.css +116 -49
- package/renderer/styles.css +34 -19
- package/renderer/terminal-agent.js +17 -13
- package/renderer/terminal-events.js +253 -37
- package/renderer/terminal-workbench.js +208 -89
- package/renderer/terminal.js +350 -35
- package/src/agentMonitor/claudeParser.js +96 -7
- package/src/agentMonitor/codexParser.js +59 -4
- package/src/agentMonitor/executionActivity.js +282 -0
- package/src/agentMonitor/genericParser.js +56 -13
- package/src/agentMonitor/hierarchy.js +17 -0
- package/src/agentMonitor/responseIntent.js +51 -0
- package/src/agentMonitor.js +21 -3
- package/src/agentRunner.js +66 -1
- package/src/attentionNotifier.js +14 -10
- package/src/automationMonitor.js +258 -0
- package/src/contracts.js +10 -1
- package/src/ipc/registerAgentIpc.js +9 -3
- package/src/ipc/registerAppIpc.js +4 -1
- package/src/ipc/registerTerminalIpc.js +12 -14
- package/src/macUpdateHelper.js +210 -0
- package/src/monitorWorker.js +65 -6
- package/src/platformPath.js +80 -0
- package/src/processMonitor.js +80 -22
- package/src/providerVisibilityStore.js +45 -0
- package/src/sessionIntelligence.js +261 -0
- package/src/terminalHost.js +453 -0
- package/src/terminalHostDaemon.js +61 -0
- package/src/terminalManager.js +218 -6
- package/src/updateInstaller.js +175 -0
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
.settings-head p:last-child {
|
|
202
|
-
font-size:
|
|
202
|
+
font-size: 12px;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
.settings-emblem {
|
|
@@ -317,34 +317,62 @@
|
|
|
317
317
|
left: 10px;
|
|
318
318
|
max-width: 430px;
|
|
319
319
|
margin-left: auto;
|
|
320
|
+
max-height: calc(100dvh - 96px - env(safe-area-inset-bottom));
|
|
321
|
+
overflow-y: auto;
|
|
320
322
|
padding: 12px;
|
|
321
323
|
border: 1px solid #324456;
|
|
322
324
|
border-radius: 16px;
|
|
323
325
|
background: #111925;
|
|
324
|
-
|
|
326
|
+
scrollbar-width: thin;
|
|
327
|
+
scrollbar-color: #516272 #111925;
|
|
328
|
+
box-shadow: 0 0 0 100vmax rgba(3,7,12,.62), 0 24px 70px rgba(0,0,0,.62);
|
|
325
329
|
}
|
|
326
330
|
|
|
331
|
+
.mobile-tools-menu::-webkit-scrollbar { width: 7px; }
|
|
332
|
+
.mobile-tools-menu::-webkit-scrollbar-track { background: #111925; border-radius: 999px; }
|
|
333
|
+
.mobile-tools-menu::-webkit-scrollbar-thumb { border: 2px solid #111925; border-radius: 999px; background: #607181; }
|
|
334
|
+
|
|
327
335
|
.mobile-tools-menu:not(.hidden) {
|
|
328
336
|
display: grid;
|
|
329
337
|
gap: 7px;
|
|
330
338
|
}
|
|
331
339
|
|
|
332
|
-
.mobile-tools-menu
|
|
333
|
-
|
|
340
|
+
.mobile-tools-menu>.mobile-tools-head {
|
|
341
|
+
min-height: 48px;
|
|
342
|
+
display: grid;
|
|
343
|
+
grid-template-columns: minmax(0, 1fr) 44px;
|
|
344
|
+
align-items: center;
|
|
345
|
+
gap: 10px;
|
|
346
|
+
padding: 0 2px 6px 5px;
|
|
334
347
|
}
|
|
335
348
|
|
|
336
|
-
.mobile-tools-menu>
|
|
349
|
+
.mobile-tools-menu>.mobile-tools-head>span { min-width: 0; margin: 0; }
|
|
350
|
+
|
|
351
|
+
.mobile-tools-menu>.mobile-tools-head b {
|
|
337
352
|
display: block;
|
|
338
353
|
font-size: 14px;
|
|
339
354
|
}
|
|
340
355
|
|
|
341
|
-
.mobile-tools-menu
|
|
356
|
+
.mobile-tools-menu>.mobile-tools-head small {
|
|
342
357
|
display: block;
|
|
343
358
|
margin-top: 3px;
|
|
344
359
|
color: #9ba9b8;
|
|
345
|
-
font-size:
|
|
360
|
+
font-size: 12px;
|
|
346
361
|
}
|
|
347
362
|
|
|
363
|
+
#mobileToolsCloseBtn {
|
|
364
|
+
width: 44px;
|
|
365
|
+
min-height: 44px;
|
|
366
|
+
border: 1px solid #304557;
|
|
367
|
+
border-radius: 10px;
|
|
368
|
+
background: #0d1620;
|
|
369
|
+
color: #c9d7df;
|
|
370
|
+
font-size: 20px;
|
|
371
|
+
cursor: pointer;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
#mobileToolsCloseBtn:hover { border-color: #5b778c; background: #172532; color: #fff; }
|
|
375
|
+
|
|
348
376
|
.mobile-tools-menu>button {
|
|
349
377
|
min-height: 58px;
|
|
350
378
|
display: grid;
|
|
@@ -365,6 +393,50 @@
|
|
|
365
393
|
background: #152230;
|
|
366
394
|
}
|
|
367
395
|
|
|
396
|
+
.mobile-project-picker {
|
|
397
|
+
border: 1px solid #2b4050;
|
|
398
|
+
border-radius: 12px;
|
|
399
|
+
background: #0d161f;
|
|
400
|
+
overflow: hidden;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.mobile-project-picker>summary {
|
|
404
|
+
min-height: 58px;
|
|
405
|
+
display: grid;
|
|
406
|
+
grid-template-columns: 40px minmax(0,1fr) 18px;
|
|
407
|
+
align-items: center;
|
|
408
|
+
gap: 10px;
|
|
409
|
+
padding: 8px 10px;
|
|
410
|
+
color: #dce6ee;
|
|
411
|
+
cursor: pointer;
|
|
412
|
+
list-style: none;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.mobile-project-picker>summary::-webkit-details-marker { display: none; }
|
|
416
|
+
.mobile-project-picker>summary:hover { background: #152230; }
|
|
417
|
+
.mobile-project-picker>summary em { color: #94a8b6; font-style: normal; transition: transform .18s ease; }
|
|
418
|
+
.mobile-project-picker[open]>summary em { transform: rotate(180deg); }
|
|
419
|
+
|
|
420
|
+
.mobile-project-picker-body {
|
|
421
|
+
padding: 8px;
|
|
422
|
+
border-top: 1px solid #263947;
|
|
423
|
+
background: #0a111a;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.mobile-project-picker .workspace-list { max-height: none; overflow: visible; padding-right: 0; }
|
|
427
|
+
.mobile-project-picker .workspace-item { min-height: 44px; }
|
|
428
|
+
.mobile-project-picker .workspace-item[aria-pressed="true"],
|
|
429
|
+
.mobile-project-picker .workspace-row:has(.workspace-item[aria-pressed="true"]) { display: none; }
|
|
430
|
+
.mobile-project-picker-body>#mobileAddWorkspaceBtn {
|
|
431
|
+
width: 100%;
|
|
432
|
+
min-height: 44px;
|
|
433
|
+
margin-top: 8px;
|
|
434
|
+
border: 1px dashed #3a5668;
|
|
435
|
+
border-radius: 9px;
|
|
436
|
+
background: #111e29;
|
|
437
|
+
color: #9edff2;
|
|
438
|
+
}
|
|
439
|
+
|
|
368
440
|
.mobile-tools-menu i {
|
|
369
441
|
width: 38px;
|
|
370
442
|
height: 38px;
|
|
@@ -385,7 +457,7 @@
|
|
|
385
457
|
display: block;
|
|
386
458
|
margin-top: 4px;
|
|
387
459
|
color: #94a3b3;
|
|
388
|
-
font-size:
|
|
460
|
+
font-size: 12px;
|
|
389
461
|
}
|
|
390
462
|
|
|
391
463
|
.guide-toggle {
|
|
@@ -554,11 +626,11 @@
|
|
|
554
626
|
/* Compact screens ≤ 420px: keep compact forms and dialog actions inside the safe area. */
|
|
555
627
|
@media (max-width:420px) {
|
|
556
628
|
.primary-button {
|
|
557
|
-
font-size:
|
|
629
|
+
font-size: 12px;
|
|
558
630
|
}
|
|
559
631
|
|
|
560
632
|
.ghost-button {
|
|
561
|
-
font-size:
|
|
633
|
+
font-size: 12px;
|
|
562
634
|
}
|
|
563
635
|
|
|
564
636
|
.beginner-guide li {
|
|
@@ -591,7 +663,7 @@
|
|
|
591
663
|
}
|
|
592
664
|
|
|
593
665
|
.new-run-cta-copy b {
|
|
594
|
-
font-size:
|
|
666
|
+
font-size: 12px;
|
|
595
667
|
}
|
|
596
668
|
|
|
597
669
|
.run-composer .modal-head {
|
|
@@ -647,7 +719,7 @@
|
|
|
647
719
|
}
|
|
648
720
|
|
|
649
721
|
.guide-toggle b {
|
|
650
|
-
font-size:
|
|
722
|
+
font-size: 12px;
|
|
651
723
|
}
|
|
652
724
|
|
|
653
725
|
.run-provider-docs {
|
|
@@ -117,26 +117,31 @@
|
|
|
117
117
|
.terminal-resource-panel {
|
|
118
118
|
max-height: none;
|
|
119
119
|
display: grid;
|
|
120
|
-
grid-template-columns:
|
|
121
|
-
grid-template-rows:
|
|
120
|
+
grid-template-columns: 220px minmax(0,1fr);
|
|
121
|
+
grid-template-rows: 106px;
|
|
122
122
|
border-right: 0;
|
|
123
123
|
border-bottom: 1px solid #1d2d38;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
.terminal-resource-head {
|
|
127
|
-
min-height:
|
|
127
|
+
min-height: 106px;
|
|
128
128
|
border-right: 1px solid #1d2d38;
|
|
129
129
|
border-bottom: 0;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.terminal-session-list {
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
133
|
+
display: grid;
|
|
134
|
+
grid-template-columns: none;
|
|
135
|
+
grid-auto-columns: minmax(250px,310px);
|
|
136
|
+
grid-auto-flow: column;
|
|
137
|
+
max-height: 106px;
|
|
138
|
+
padding: 10px;
|
|
139
|
+
overflow-x: auto;
|
|
140
|
+
overflow-y: hidden;
|
|
136
141
|
}
|
|
137
142
|
|
|
138
143
|
.terminal-session-item {
|
|
139
|
-
min-height:
|
|
144
|
+
min-height: 84px;
|
|
140
145
|
}
|
|
141
146
|
|
|
142
147
|
.terminal-resource-tip {
|
|
@@ -144,8 +149,8 @@
|
|
|
144
149
|
}
|
|
145
150
|
|
|
146
151
|
#terminalSection .terminal-workbench {
|
|
147
|
-
height:
|
|
148
|
-
min-height:
|
|
152
|
+
height: clamp(500px,calc(100vh - 270px),760px);
|
|
153
|
+
min-height: 500px;
|
|
149
154
|
}
|
|
150
155
|
}
|
|
151
156
|
|
|
@@ -335,11 +340,11 @@
|
|
|
335
340
|
|
|
336
341
|
.terminal-session-list {
|
|
337
342
|
grid-template-columns: 1fr;
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
+
grid-auto-columns: auto;
|
|
344
|
+
grid-auto-flow: row;
|
|
345
|
+
max-height: 260px;
|
|
346
|
+
overflow-x: hidden;
|
|
347
|
+
overflow-y: auto;
|
|
343
348
|
}
|
|
344
349
|
|
|
345
350
|
.terminal-command-label>span {
|
|
@@ -358,8 +363,11 @@
|
|
|
358
363
|
|
|
359
364
|
.terminal-console-head {
|
|
360
365
|
align-items: flex-start;
|
|
366
|
+
flex-direction: column;
|
|
361
367
|
}
|
|
362
368
|
|
|
369
|
+
.terminal-console-tools { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
|
|
370
|
+
|
|
363
371
|
.terminal-console-state {
|
|
364
372
|
margin-top: 1px;
|
|
365
373
|
}
|
|
@@ -702,15 +710,15 @@
|
|
|
702
710
|
|
|
703
711
|
.terminal-controlbar .terminal-key-actions button {
|
|
704
712
|
padding-inline: 7px;
|
|
705
|
-
font-size:
|
|
713
|
+
font-size: 12px;
|
|
706
714
|
}
|
|
707
715
|
|
|
708
716
|
.terminal-console-head small {
|
|
709
|
-
font-size:
|
|
717
|
+
font-size: 12px;
|
|
710
718
|
}
|
|
711
719
|
|
|
712
720
|
.terminal-console-state {
|
|
713
|
-
font-size:
|
|
721
|
+
font-size: 12px;
|
|
714
722
|
}
|
|
715
723
|
|
|
716
724
|
.terminal-command-form {
|
|
@@ -41,56 +41,28 @@
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
/* Compact screens ≤ 980px:
|
|
44
|
+
/* Compact screens ≤ 980px: keep project filtering readable while reducing the side rail. */
|
|
45
45
|
@media (max-width:980px) {
|
|
46
46
|
:root {
|
|
47
|
-
--sidebar:
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
/* Compact screens ≤ 900px: collapse content columns and simplify the side rail. */
|
|
52
|
-
@media (max-width:900px) {
|
|
53
|
-
:root {
|
|
54
|
-
--sidebar: 72px;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.brand>div:last-child {
|
|
58
|
-
display: none;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.nav-item span:not(.nav-icon) {
|
|
62
|
-
display: none;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.nav-item b {
|
|
66
|
-
display: none;
|
|
47
|
+
--sidebar: 220px;
|
|
67
48
|
}
|
|
68
49
|
|
|
69
|
-
.
|
|
50
|
+
.brand small,
|
|
51
|
+
.provider-rail-item small,
|
|
52
|
+
.sidebar-footer small,
|
|
53
|
+
.sidebar-app-version {
|
|
70
54
|
display: none;
|
|
71
55
|
}
|
|
72
56
|
|
|
73
|
-
.
|
|
74
|
-
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.workspace-section {
|
|
78
|
-
display: none;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.sidebar-footer div {
|
|
82
|
-
display: none;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.brand {
|
|
86
|
-
justify-content: center;
|
|
87
|
-
padding-left: 0;
|
|
88
|
-
padding-right: 0;
|
|
89
|
-
}
|
|
57
|
+
.sidebar { padding: 20px 13px 16px; }
|
|
58
|
+
.brand { padding-bottom: 18px; }
|
|
59
|
+
.sidebar-section { margin-top: 19px; }
|
|
60
|
+
}
|
|
90
61
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
62
|
+
/* Compact screens ≤ 900px: collapse content columns and simplify the side rail. */
|
|
63
|
+
@media (max-width:900px) {
|
|
64
|
+
:root {
|
|
65
|
+
--sidebar: 210px;
|
|
94
66
|
}
|
|
95
67
|
|
|
96
68
|
.topbar {
|
|
@@ -150,6 +122,10 @@
|
|
|
150
122
|
overscroll-behavior: contain;
|
|
151
123
|
}
|
|
152
124
|
|
|
125
|
+
body[data-current-view="terminal"] .main-stage {
|
|
126
|
+
padding-bottom: calc(92px + env(safe-area-inset-bottom));
|
|
127
|
+
}
|
|
128
|
+
|
|
153
129
|
.sidebar {
|
|
154
130
|
position: fixed;
|
|
155
131
|
z-index: 18;
|
|
@@ -180,6 +156,26 @@
|
|
|
180
156
|
display: none!important;
|
|
181
157
|
}
|
|
182
158
|
|
|
159
|
+
.advanced-tools-nav {
|
|
160
|
+
display: contents;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.advanced-tools-nav > summary {
|
|
164
|
+
display: none;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.advanced-tools-list {
|
|
168
|
+
display: contents!important;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.advanced-tools-list .nav-item {
|
|
172
|
+
display: none;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.advanced-tools-list .runtime-nav-item {
|
|
176
|
+
display: grid;
|
|
177
|
+
}
|
|
178
|
+
|
|
183
179
|
.nav-item {
|
|
184
180
|
min-width: 0;
|
|
185
181
|
height: 54px;
|
|
@@ -198,7 +194,7 @@
|
|
|
198
194
|
max-width: 100%;
|
|
199
195
|
overflow: hidden;
|
|
200
196
|
color: inherit;
|
|
201
|
-
font-size:
|
|
197
|
+
font-size: 12px;
|
|
202
198
|
font-weight: 700;
|
|
203
199
|
letter-spacing: -.04em;
|
|
204
200
|
text-overflow: ellipsis;
|
|
@@ -337,7 +333,7 @@
|
|
|
337
333
|
height: 60px;
|
|
338
334
|
display: grid;
|
|
339
335
|
gap: 2px;
|
|
340
|
-
grid-template-columns: repeat(
|
|
336
|
+
grid-template-columns: repeat(5,minmax(0,1fr));
|
|
341
337
|
}
|
|
342
338
|
|
|
343
339
|
.topbar {
|
|
@@ -379,7 +375,7 @@
|
|
|
379
375
|
/* Compact screens ≤ 640px: replace the side rail with bottom navigation and protect horizontal space. */
|
|
380
376
|
@media (max-width:640px) {
|
|
381
377
|
.main-stage {
|
|
382
|
-
padding: 22px 15px
|
|
378
|
+
padding: 22px 15px calc(92px + env(safe-area-inset-bottom));
|
|
383
379
|
}
|
|
384
380
|
|
|
385
381
|
.sessions-heading {
|
|
@@ -414,7 +410,7 @@
|
|
|
414
410
|
/* Compact screens ≤ 430px: trim labels and spacing for the narrowest supported window. */
|
|
415
411
|
@media (max-width:430px) {
|
|
416
412
|
.sidebar .nav-item>span:nth-child(2) {
|
|
417
|
-
font-size:
|
|
413
|
+
font-size: 12px;
|
|
418
414
|
}
|
|
419
415
|
}
|
|
420
416
|
|
|
@@ -456,11 +452,11 @@
|
|
|
456
452
|
}
|
|
457
453
|
|
|
458
454
|
.token-row span {
|
|
459
|
-
font-size:
|
|
455
|
+
font-size: 12px;
|
|
460
456
|
}
|
|
461
457
|
|
|
462
458
|
.token-row b {
|
|
463
|
-
font-size:
|
|
459
|
+
font-size: 12px;
|
|
464
460
|
}
|
|
465
461
|
|
|
466
462
|
.chat-row {
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
align-items: flex-start;
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
.live-section-
|
|
230
|
+
.live-section-description {
|
|
231
231
|
display: none;
|
|
232
232
|
}
|
|
233
233
|
}
|
|
@@ -549,7 +549,7 @@
|
|
|
549
549
|
gap: 14px;
|
|
550
550
|
}
|
|
551
551
|
|
|
552
|
-
.live-section-
|
|
552
|
+
.live-section-title {
|
|
553
553
|
min-width: 0;
|
|
554
554
|
align-items: flex-start;
|
|
555
555
|
}
|
|
@@ -601,11 +601,11 @@
|
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
.global-stat span {
|
|
604
|
-
font-size:
|
|
604
|
+
font-size: 12px;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
.global-stat em {
|
|
608
|
-
font-size:
|
|
608
|
+
font-size: 12px;
|
|
609
609
|
}
|
|
610
610
|
|
|
611
611
|
.global-stat strong {
|
|
@@ -619,6 +619,37 @@
|
|
|
619
619
|
|
|
620
620
|
/* Compact screens ≤ 640px: stack relationship cards and route connectors vertically. */
|
|
621
621
|
@media (max-width:640px) {
|
|
622
|
+
.execution-activity-card>summary {
|
|
623
|
+
grid-template-columns: 30px minmax(0,1fr);
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.execution-activity-state {
|
|
627
|
+
grid-column: 2;
|
|
628
|
+
align-items: flex-start;
|
|
629
|
+
max-width: 100%;
|
|
630
|
+
text-align: left;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.execution-activity-state>span:first-child,
|
|
634
|
+
.execution-activity-disclosure { justify-content: flex-start; }
|
|
635
|
+
|
|
636
|
+
.execution-activity-detail { padding: 12px; }
|
|
637
|
+
|
|
638
|
+
.execution-activity-detail dl { grid-template-columns: 1fr; }
|
|
639
|
+
|
|
640
|
+
.execution-activity-panel>header {
|
|
641
|
+
flex-direction: column;
|
|
642
|
+
}
|
|
643
|
+
.live-section-head {
|
|
644
|
+
flex-wrap: wrap;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.live-section-tools {
|
|
648
|
+
width: 100%;
|
|
649
|
+
justify-content: flex-start;
|
|
650
|
+
margin-left: 0;
|
|
651
|
+
}
|
|
652
|
+
|
|
622
653
|
.global-stat {
|
|
623
654
|
border-right: 0;
|
|
624
655
|
border-bottom: 1px solid var(--line-soft);
|
|
@@ -758,7 +789,10 @@
|
|
|
758
789
|
|
|
759
790
|
/* Reduced motion: preserve state changes while removing decorative movement. */
|
|
760
791
|
@media (prefers-reduced-motion:reduce) {
|
|
761
|
-
.live-beacon
|
|
792
|
+
.live-beacon,
|
|
793
|
+
.execution-activity-card.running .execution-activity-state>span:first-child i {
|
|
762
794
|
animation: none!important;
|
|
763
795
|
}
|
|
796
|
+
|
|
797
|
+
.execution-activity-disclosure i { transition: none; }
|
|
764
798
|
}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
.run-provider-option small {
|
|
40
40
|
display: block;
|
|
41
|
-
font-size:
|
|
41
|
+
font-size: 12px;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
.run-provider-option:disabled {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
display: block;
|
|
51
51
|
margin-bottom: 6px;
|
|
52
52
|
color: #7e899b;
|
|
53
|
-
font-size:
|
|
53
|
+
font-size: 12px;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.run-modal label>span small {
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
outline: 0;
|
|
67
67
|
height: 37px;
|
|
68
68
|
padding: 0 10px;
|
|
69
|
-
font-size:
|
|
69
|
+
font-size: 12px;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
.run-modal textarea {
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
outline: 0;
|
|
79
79
|
padding: 10px;
|
|
80
80
|
resize: vertical;
|
|
81
|
-
font-size:
|
|
81
|
+
font-size: 12px;
|
|
82
82
|
line-height: 1.55;
|
|
83
83
|
}
|
|
84
84
|
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
max-width: 520px;
|
|
159
159
|
margin: 7px 0 0;
|
|
160
160
|
color: #77889a;
|
|
161
|
-
font-size:
|
|
161
|
+
font-size: 12px;
|
|
162
162
|
line-height: 1.55;
|
|
163
163
|
}
|
|
164
164
|
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
border-radius: 9px;
|
|
198
198
|
background: #18323d;
|
|
199
199
|
color: #82def4;
|
|
200
|
-
font-size:
|
|
200
|
+
font-size: 12px;
|
|
201
201
|
font-style: normal;
|
|
202
202
|
font-weight: 850;
|
|
203
203
|
box-shadow: inset 0 0 0 1px rgba(126,217,238,.14);
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
place-items: center;
|
|
318
318
|
opacity: 0;
|
|
319
319
|
color: var(--provider);
|
|
320
|
-
font-size:
|
|
320
|
+
font-size: 12px;
|
|
321
321
|
transform: scale(.25);
|
|
322
322
|
filter: blur(4px);
|
|
323
323
|
transition-property: opacity,transform,filter;
|
|
@@ -344,7 +344,7 @@
|
|
|
344
344
|
border-radius: 11px;
|
|
345
345
|
background: #080e15;
|
|
346
346
|
box-shadow: inset 0 0 0 1px #263541;
|
|
347
|
-
font-size:
|
|
347
|
+
font-size: 12px;
|
|
348
348
|
}
|
|
349
349
|
|
|
350
350
|
.run-composer .path-field button:hover {
|
|
@@ -434,7 +434,7 @@
|
|
|
434
434
|
|
|
435
435
|
.run-advanced>summary i {
|
|
436
436
|
color: #718594;
|
|
437
|
-
font-size:
|
|
437
|
+
font-size: 12px;
|
|
438
438
|
font-style: normal;
|
|
439
439
|
transition-property: transform;
|
|
440
440
|
transition-duration: 180ms;
|
|
@@ -454,7 +454,7 @@
|
|
|
454
454
|
border: 0;
|
|
455
455
|
border-radius: 10px;
|
|
456
456
|
box-shadow: inset 0 0 0 1px #273541;
|
|
457
|
-
font-size:
|
|
457
|
+
font-size: 12px;
|
|
458
458
|
}
|
|
459
459
|
|
|
460
460
|
.run-composer .form-error {
|
|
@@ -510,7 +510,7 @@
|
|
|
510
510
|
.run-provider-help-copy p {
|
|
511
511
|
margin: 5px 0 0;
|
|
512
512
|
color: #c7ae7d;
|
|
513
|
-
font-size:
|
|
513
|
+
font-size: 12px;
|
|
514
514
|
line-height: 1.55;
|
|
515
515
|
}
|
|
516
516
|
|
|
@@ -549,14 +549,14 @@
|
|
|
549
549
|
|
|
550
550
|
.run-provider-docs b {
|
|
551
551
|
display: block;
|
|
552
|
-
font-size:
|
|
552
|
+
font-size: 12px;
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
.run-provider-docs small {
|
|
556
556
|
display: block;
|
|
557
557
|
margin-top: 3px;
|
|
558
558
|
color: #9f8b67;
|
|
559
|
-
font-size:
|
|
559
|
+
font-size: 12px;
|
|
560
560
|
}
|
|
561
561
|
|
|
562
562
|
.run-provider-docs i {
|
|
@@ -578,19 +578,19 @@
|
|
|
578
578
|
margin-top: 4px;
|
|
579
579
|
line-height: 1.45;
|
|
580
580
|
color: #98a6b5;
|
|
581
|
-
font-size:
|
|
581
|
+
font-size: 12px;
|
|
582
582
|
}
|
|
583
583
|
|
|
584
584
|
.run-composer .field-label {
|
|
585
585
|
margin-bottom: 7px;
|
|
586
586
|
color: #98a6b5;
|
|
587
|
-
font-size:
|
|
587
|
+
font-size: 12px;
|
|
588
588
|
}
|
|
589
589
|
|
|
590
590
|
.run-composer .run-folder-field>span {
|
|
591
591
|
margin-bottom: 7px;
|
|
592
592
|
color: #98a6b5;
|
|
593
|
-
font-size:
|
|
593
|
+
font-size: 12px;
|
|
594
594
|
}
|
|
595
595
|
|
|
596
596
|
.run-provider-copy small {
|
|
@@ -600,26 +600,31 @@
|
|
|
600
600
|
white-space: nowrap;
|
|
601
601
|
margin-top: 3px;
|
|
602
602
|
color: #98a6b5;
|
|
603
|
-
font-size:
|
|
603
|
+
font-size: 12px;
|
|
604
604
|
}
|
|
605
605
|
|
|
606
606
|
.run-composer .permission-toggle div small {
|
|
607
607
|
color: #98a6b5;
|
|
608
|
-
font-size:
|
|
608
|
+
font-size: 12px;
|
|
609
609
|
}
|
|
610
610
|
|
|
611
611
|
.run-prompt-count {
|
|
612
612
|
flex: 0 0 auto;
|
|
613
613
|
font-variant-numeric: tabular-nums;
|
|
614
614
|
color: #98a6b5;
|
|
615
|
-
font-size:
|
|
615
|
+
font-size: 12px;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.run-prompt-count.warning {
|
|
619
|
+
color: #ffbd68;
|
|
620
|
+
font-weight: 700;
|
|
616
621
|
}
|
|
617
622
|
|
|
618
623
|
.run-advanced>summary small {
|
|
619
624
|
display: block;
|
|
620
625
|
margin-top: 3px;
|
|
621
626
|
color: #98a6b5;
|
|
622
|
-
font-size:
|
|
627
|
+
font-size: 12px;
|
|
623
628
|
}
|
|
624
629
|
|
|
625
630
|
.run-provider-copy b {
|
|
@@ -654,7 +659,7 @@
|
|
|
654
659
|
transition-duration: 150ms;
|
|
655
660
|
transition-timing-function: ease-out;
|
|
656
661
|
padding: 0 11px;
|
|
657
|
-
font-size:
|
|
662
|
+
font-size: 12px;
|
|
658
663
|
}
|
|
659
664
|
|
|
660
665
|
.run-workspace-suggestions button {
|
|
@@ -677,7 +682,7 @@
|
|
|
677
682
|
overflow: hidden;
|
|
678
683
|
text-overflow: ellipsis;
|
|
679
684
|
white-space: nowrap;
|
|
680
|
-
font-size:
|
|
685
|
+
font-size: 12px;
|
|
681
686
|
}
|
|
682
687
|
|
|
683
688
|
.run-composer .path-field button {
|
|
@@ -691,5 +696,5 @@
|
|
|
691
696
|
box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
|
|
692
697
|
transition-property: transform,background-color,color;
|
|
693
698
|
transition-duration: 150ms;
|
|
694
|
-
font-size:
|
|
699
|
+
font-size: 12px;
|
|
695
700
|
}
|