loadtoagent 1.3.1 → 1.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/README.ko.md +11 -9
  2. package/docs/PROVIDER-CONTRACTS.md +8 -6
  3. package/main.js +25 -3
  4. package/package.json +1 -1
  5. package/preload.js +7 -2
  6. package/renderer/app-dashboard.js +18 -12
  7. package/renderer/app-graph-view.js +1 -1
  8. package/renderer/app-management.js +91 -45
  9. package/renderer/app-run-modal.js +1 -1
  10. package/renderer/app.js +1 -1
  11. package/renderer/i18n-messages.js +212 -199
  12. package/renderer/index.html +28 -27
  13. package/renderer/styles-agent-map.css +10 -10
  14. package/renderer/styles-cards.css +19 -19
  15. package/renderer/styles-collaboration.css +23 -23
  16. package/renderer/styles-components.css +36 -36
  17. package/renderer/styles-management.css +23 -14
  18. package/renderer/styles-onboarding.css +8 -8
  19. package/renderer/styles-overlays.css +5 -5
  20. package/renderer/styles-product.css +24 -24
  21. package/renderer/styles-quality.css +4 -4
  22. package/renderer/styles-readability.css +179 -1
  23. package/renderer/styles-responsive-runtime.css +5 -5
  24. package/renderer/styles-responsive-workflows.css +2 -2
  25. package/renderer/styles-run-composer.css +23 -23
  26. package/renderer/styles-runtime-overview.css +22 -22
  27. package/renderer/styles-settings.css +21 -21
  28. package/renderer/styles-terminal.css +66 -66
  29. package/renderer/styles-tmux.css +49 -49
  30. package/renderer/styles-workflows.css +48 -48
  31. package/renderer/styles.css +7 -7
  32. package/renderer/terminal-events.js +34 -11
  33. package/renderer/terminal-workbench.js +52 -21
  34. package/renderer/terminal.js +9 -1
  35. package/src/contracts.js +5 -5
  36. package/src/ipc/registerTerminalIpc.js +6 -14
  37. package/src/sessionIntelligence.js +18 -4
  38. package/src/terminalHost.js +100 -26
  39. package/src/terminalHostDaemon.js +1 -0
  40. package/src/terminalManager.js +61 -4
@@ -86,7 +86,7 @@ button[aria-busy="true"] {
86
86
  background: color-mix(in srgb,var(--provider) 12%,#121720);
87
87
  border: 1px solid color-mix(in srgb,var(--provider) 30%,#202938);
88
88
  color: var(--provider);
89
- font-size: 8px;
89
+ font-size: 12px;
90
90
  font-weight: 800;
91
91
  }
92
92
 
@@ -247,7 +247,7 @@ button[aria-busy="true"] {
247
247
  border-radius: 7px;
248
248
  background: color-mix(in srgb,var(--provider) 10%,#131822);
249
249
  color: var(--provider);
250
- font-size: 10px;
250
+ font-size: 12px;
251
251
  }
252
252
 
253
253
  .activity-copy {
@@ -259,7 +259,7 @@ button[aria-busy="true"] {
259
259
  white-space: nowrap;
260
260
  overflow: hidden;
261
261
  text-overflow: ellipsis;
262
- font-size: 9px;
262
+ font-size: 12px;
263
263
  font-weight: 580;
264
264
  color: #bec8d5;
265
265
  }
@@ -271,7 +271,7 @@ button[aria-busy="true"] {
271
271
  text-overflow: ellipsis;
272
272
  margin-top: 3px;
273
273
  color: #5f6a7b;
274
- font-size: 8px;
274
+ font-size: 12px;
275
275
  }
276
276
 
277
277
  .activity-wave {
@@ -319,12 +319,12 @@ button[aria-busy="true"] {
319
319
  justify-content: space-between;
320
320
  gap: 8px;
321
321
  color: #657186;
322
- font-size: 8px;
322
+ font-size: 12px;
323
323
  }
324
324
 
325
325
  .metric-label b {
326
326
  color: #b9c4d0;
327
- font-size: 9px;
327
+ font-size: 12px;
328
328
  }
329
329
 
330
330
  .context-track {
@@ -405,7 +405,7 @@ button[aria-busy="true"] {
405
405
  max-width: 470px;
406
406
  margin: 8px 0 17px;
407
407
  color: #657185;
408
- font-size: 10px;
408
+ font-size: 12px;
409
409
  line-height: 1.6;
410
410
  }
411
411
 
@@ -454,7 +454,7 @@ button[aria-busy="true"] {
454
454
  border-radius: 9px;
455
455
  background: #141a24;
456
456
  color: #8592a5;
457
- font-size: 8px;
457
+ font-size: 12px;
458
458
  font-weight: 750;
459
459
  }
460
460
 
@@ -542,7 +542,7 @@ button[aria-busy="true"] {
542
542
  border-radius: 9px;
543
543
  background: #1d1810;
544
544
  color: #d6b578;
545
- font-size: 10px;
545
+ font-size: 12px;
546
546
  }
547
547
 
548
548
  .chat-activities {
@@ -556,7 +556,7 @@ button[aria-busy="true"] {
556
556
  .chat-activities>summary {
557
557
  padding: 11px 13px;
558
558
  color: #91a0b1;
559
- font-size: 11px;
559
+ font-size: 12px;
560
560
  cursor: pointer;
561
561
  }
562
562
 
@@ -579,11 +579,11 @@ button[aria-busy="true"] {
579
579
  gap: 10px;
580
580
  margin-bottom: 7px;
581
581
  color: #8997a8;
582
- font-size: 9px;
582
+ font-size: 12px;
583
583
  }
584
584
 
585
585
  .chat-activities .chat-content {
586
- font-size: 10px;
586
+ font-size: 12px;
587
587
  }
588
588
 
589
589
  .stop-run:disabled {
@@ -627,7 +627,7 @@ button[aria-busy="true"] {
627
627
  border-radius: 50%;
628
628
  background: #111721;
629
629
  color: #788599;
630
- font-size: 7px;
630
+ font-size: 12px;
631
631
  }
632
632
 
633
633
  .lifecycle-event.running .life-node {
@@ -655,7 +655,7 @@ button[aria-busy="true"] {
655
655
  justify-content: space-between;
656
656
  margin-top: 7px;
657
657
  color: #566174;
658
- font-size: 7px;
658
+ font-size: 12px;
659
659
  }
660
660
 
661
661
  .form-grid {
@@ -680,7 +680,7 @@ button[aria-busy="true"] {
680
680
  border-radius: 0 9px 9px 0;
681
681
  background: #151c27;
682
682
  color: #8995a7;
683
- font-size: 9px;
683
+ font-size: 12px;
684
684
  cursor: pointer;
685
685
  }
686
686
 
@@ -712,14 +712,14 @@ button[aria-busy="true"] {
712
712
  border-radius: 9px;
713
713
  background: rgba(255,107,127,.07);
714
714
  color: #ff8c9b;
715
- font-size: 9px;
715
+ font-size: 12px;
716
716
  }
717
717
 
718
718
  .sync-state b {
719
719
  color: #79eeb0;
720
720
  letter-spacing: .14em;
721
721
  display: block;
722
- font-size: 10px;
722
+ font-size: 12px;
723
723
  }
724
724
 
725
725
  .sync-state small {
@@ -727,7 +727,7 @@ button[aria-busy="true"] {
727
727
  color: #687487;
728
728
  white-space: nowrap;
729
729
  display: block;
730
- font-size: 10px;
730
+ font-size: 12px;
731
731
  }
732
732
 
733
733
  .map-hint {
@@ -804,7 +804,7 @@ button[aria-busy="true"] {
804
804
  color: #8793a6;
805
805
  outline: 0;
806
806
  height: 40px;
807
- font-size: 11px;
807
+ font-size: 12px;
808
808
  }
809
809
 
810
810
  .provider-filter {
@@ -860,7 +860,7 @@ button[aria-busy="true"] {
860
860
 
861
861
  .provider-filter-mark {
862
862
  font-family: "Cascadia Code", Consolas, monospace;
863
- font-size: 9px;
863
+ font-size: 12px;
864
864
  }
865
865
 
866
866
  .provider-filter-check {
@@ -872,7 +872,7 @@ button[aria-busy="true"] {
872
872
  overflow: hidden;
873
873
  background: #53d6aa;
874
874
  color: #07130f;
875
- font-size: 10px;
875
+ font-size: 12px;
876
876
  font-style: normal;
877
877
  font-weight: 900;
878
878
  opacity: 0;
@@ -881,7 +881,7 @@ button[aria-busy="true"] {
881
881
  }
882
882
 
883
883
  .provider-filter-chip b {
884
- font-size: 10px;
884
+ font-size: 12px;
885
885
  }
886
886
 
887
887
  .provider-filter-chip:hover {
@@ -937,7 +937,7 @@ button[aria-busy="true"] {
937
937
  .chat-row.tool pre {
938
938
  font-family: "Cascadia Code",Consolas,monospace;
939
939
  color: #9da9b8;
940
- font-size: 11px;
940
+ font-size: 12px;
941
941
  }
942
942
 
943
943
  .life-copy b {
@@ -951,12 +951,12 @@ button[aria-busy="true"] {
951
951
  margin-top: 4px;
952
952
  color: #5f6b7d;
953
953
  line-height: 1.4;
954
- font-size: 11px;
954
+ font-size: 12px;
955
955
  }
956
956
 
957
957
  .lifecycle-event time {
958
958
  color: #4f5a6b;
959
- font-size: 9px;
959
+ font-size: 12px;
960
960
  }
961
961
 
962
962
  .chat-history-head {
@@ -975,7 +975,7 @@ button[aria-busy="true"] {
975
975
 
976
976
  .chat-history-head span {
977
977
  color: #79879a;
978
- font-size: 11px;
978
+ font-size: 12px;
979
979
  }
980
980
 
981
981
  .chat-history-head button {
@@ -985,7 +985,7 @@ button[aria-busy="true"] {
985
985
  border-radius: 8px;
986
986
  background: #121b27;
987
987
  color: #aab7c6;
988
- font-size: 10px;
988
+ font-size: 12px;
989
989
  cursor: pointer;
990
990
  }
991
991
 
@@ -1037,7 +1037,7 @@ button[aria-busy="true"] {
1037
1037
 
1038
1038
  .structured-heading span {
1039
1039
  color: #728196;
1040
- font-size: 10px;
1040
+ font-size: 12px;
1041
1041
  }
1042
1042
 
1043
1043
  .json-object {
@@ -1055,7 +1055,7 @@ button[aria-busy="true"] {
1055
1055
 
1056
1056
  .json-object dt {
1057
1057
  color: #7f90a5;
1058
- font-size: 10px;
1058
+ font-size: 12px;
1059
1059
  font-weight: 650;
1060
1060
  overflow-wrap: anywhere;
1061
1061
  }
@@ -1124,7 +1124,7 @@ button[aria-busy="true"] {
1124
1124
  display: block;
1125
1125
  margin-bottom: 7px;
1126
1126
  color: #718095;
1127
- font-size: 9px;
1127
+ font-size: 12px;
1128
1128
  font-weight: 700;
1129
1129
  letter-spacing: .06em;
1130
1130
  }
@@ -1158,7 +1158,7 @@ button[aria-busy="true"] {
1158
1158
  overflow: hidden;
1159
1159
  text-overflow: ellipsis;
1160
1160
  white-space: nowrap;
1161
- font-size: 9px;
1161
+ font-size: 12px;
1162
1162
  }
1163
1163
 
1164
1164
  .overview-branches button small {
@@ -1168,13 +1168,13 @@ button[aria-busy="true"] {
1168
1168
  white-space: nowrap;
1169
1169
  margin-top: 3px;
1170
1170
  color: #6f7d90;
1171
- font-size: 8px;
1171
+ font-size: 12px;
1172
1172
  }
1173
1173
 
1174
1174
  .overview-branches em {
1175
1175
  flex: 0 0 auto;
1176
1176
  color: #718095;
1177
- font-size: 10px;
1177
+ font-size: 12px;
1178
1178
  font-style: normal;
1179
1179
  }
1180
1180
 
@@ -1271,7 +1271,7 @@ button[aria-busy="true"] {
1271
1271
  border-radius: 7px;
1272
1272
  background: #101821;
1273
1273
  color: #8192a3;
1274
- font-size: 8px;
1274
+ font-size: 12px;
1275
1275
  font-weight: 750;
1276
1276
  line-height: 1;
1277
1277
  white-space: nowrap;
@@ -1285,7 +1285,7 @@ button[aria-busy="true"] {
1285
1285
  background: transparent!important;
1286
1286
  color: inherit!important;
1287
1287
  font-family: "Cascadia Code",Consolas,monospace;
1288
- font-size: 9px!important;
1288
+ font-size: 12px!important;
1289
1289
  font-style: normal!important;
1290
1290
  }
1291
1291
 
@@ -1297,7 +1297,7 @@ button[aria-busy="true"] {
1297
1297
 
1298
1298
  .execution-mode-badge small {
1299
1299
  color: inherit;
1300
- font-size: 8px;
1300
+ font-size: 12px;
1301
1301
  }
1302
1302
 
1303
1303
  .execution-mode-badge.standard {
@@ -93,22 +93,23 @@
93
93
  border-radius: 10px;
94
94
  background: #101a26;
95
95
  }
96
- .operations-review-total strong { color: #f4f8fa; font-size: 21px; line-height: 1; }
96
+ .operations-review-total strong { color: #f4f8fa; font-size: 21px; font-variant-numeric: tabular-nums; line-height: 1; }
97
97
  .operations-review-total span { color: #a7b6c2; font-size: 12px; white-space: nowrap; }
98
98
  .attention-inbox-head strong { color: var(--text); font-size: 36px; }
99
99
 
100
100
  .operations-metrics {
101
101
  display: grid;
102
- grid-template-columns: repeat(5, 1fr);
102
+ grid-template-columns: repeat(4, 1fr);
103
103
  border-bottom: 1px solid var(--line-soft);
104
104
  }
105
105
 
106
106
  .operations-metrics > * {
107
107
  display: flex;
108
- align-items: baseline;
108
+ align-items: flex-start;
109
+ flex-direction: column;
109
110
  justify-content: space-between;
110
- gap: 12px;
111
- min-height: 54px;
111
+ gap: 6px;
112
+ min-height: 70px;
112
113
  padding: 10px 16px;
113
114
  border: 0;
114
115
  border-right: 1px solid var(--line-soft);
@@ -121,12 +122,11 @@
121
122
  .operations-metrics > *:last-child { border-right: 0; }
122
123
  .operations-metrics button { cursor: pointer; }
123
124
  .operations-metrics button:hover { background: rgba(89, 216, 255, .055); }
124
- .operations-metrics b { color: var(--text); font-size: 21px; line-height: 1; }
125
+ .operations-metrics b { color: var(--text); font-size: 21px; font-variant-numeric: tabular-nums; line-height: 1; }
125
126
  .operations-metrics > *:nth-child(1) b { color: #ff8792; }
126
127
  .operations-metrics > *:nth-child(2) b { color: #efc96f; }
127
128
  .operations-metrics > *:nth-child(3) b { color: #8edff4; }
128
- .operations-metrics > *:nth-child(4) b { color: #b8a8de; }
129
- .operations-metrics > *:nth-child(5) b { color: #83ddb1; }
129
+ .operations-metrics > *:nth-child(4) b { color: #83ddb1; }
130
130
  .operations-priority { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; padding: 10px; }
131
131
  .operations-priority button { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 11px; min-width: 0; padding: 10px 12px; border: 1px solid var(--line-soft); border-radius: 10px; color: var(--text); background: #0c131d; text-align: left; cursor: pointer; }
132
132
  .operations-priority button:hover { border-color: #35516a; }
@@ -149,11 +149,16 @@
149
149
  .operations-more button i { font-style: normal; }
150
150
  .operations-clear { margin: 0; padding: 13px 18px; color: #8edab7; font-size: 12px; }
151
151
 
152
- .attention-inbox-summary { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 20px; border-bottom: 1px solid var(--line-soft); }
152
+ .attention-inbox-summary { display: flex; flex-wrap: wrap; align-items: stretch; gap: 8px; padding: 12px 20px; border-bottom: 1px solid var(--line-soft); }
153
+ .management-filter-all,
154
+ .management-filter-group { display: flex; align-items: center; gap: 6px; }
155
+ .management-filter-all { align-self: flex-end; }
156
+ .management-filter-group { position: relative; flex-wrap: wrap; padding: 21px 7px 7px; border: 1px solid rgba(125, 151, 170, .16); border-radius: 13px; background: rgba(12, 20, 30, .44); }
157
+ .management-filter-group > small { position: absolute; top: 5px; left: 11px; color: #8394a2; font-size: 12px; font-weight: 750; letter-spacing: .04em; }
153
158
  .attention-inbox-summary button { min-height: 44px; display: inline-flex; gap: 7px; align-items: center; padding: 7px 12px; border: 1px solid var(--line-soft); border-radius: 999px; color: var(--muted); background: #0c141e; font-size: 12px; cursor: pointer; }
154
159
  .attention-inbox-summary button:hover { border-color: #3c596b; color: #e2ebf0; }
155
160
  .attention-inbox-summary button[aria-pressed="true"] { border-color: #4cabc3; color: #e8f8fb; background: #122935; box-shadow: inset 0 0 0 1px rgba(89,216,255,.12); }
156
- .attention-inbox-summary button b { color: currentColor; }
161
+ .attention-inbox-summary button b { color: currentColor; font-variant-numeric: tabular-nums; }
157
162
  .attention-inbox-summary i { width: 6px; height: 6px; border-radius: 50%; background: #e9b949; }
158
163
  .attention-inbox-summary [data-management-inbox-filter="critical"] i { background: #ff6b76; }
159
164
  .attention-inbox-summary [data-management-inbox-filter="warning"] i { background: #e9b949; }
@@ -165,7 +170,7 @@
165
170
  .attention-card > header { display: grid; grid-template-columns: 38px 1fr auto; gap: 12px; align-items: center; }
166
171
  .attention-card > header h3 { margin: 3px 0 0; font-size: 17px; }
167
172
  .attention-card > header small { color: var(--management-provider, var(--cyan)); }
168
- .confidence { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; font-style: normal; }
173
+ .confidence { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; font-style: normal; white-space: nowrap; }
169
174
  .confidence.high { color: #82ddb0; border-color: rgba(76, 227, 154, .3); }
170
175
  .attention-reason { display: grid; grid-template-columns: 110px 1fr auto; gap: 12px; align-items: start; padding: 12px 14px; border-radius: 11px; background: rgba(233, 185, 73, .07); }
171
176
  .attention-reason span { color: #e9b949; font-size: 12px; font-weight: 800; }
@@ -207,7 +212,7 @@
207
212
  .management-evidence > header b,
208
213
  .management-controls > header b { margin-left: auto; color: #cbd6e3; font-size: 12px; }
209
214
  .management-progress > header strong,
210
- .management-health > header strong { min-width: 40px; color: var(--green); text-align: right; }
215
+ .management-health > header strong { min-width: 40px; color: var(--green); font-variant-numeric: tabular-nums; text-align: right; }
211
216
  .management-progress-track { height: 5px; margin: 12px 13px 0; border-radius: 999px; background: #182333; overflow: hidden; }
212
217
  .management-progress-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--green)); }
213
218
  .management-progress > p { display: flex; justify-content: space-between; gap: 12px; margin: 0; padding: 10px 13px 12px; }
@@ -333,7 +338,7 @@
333
338
  }
334
339
 
335
340
  @media (max-width: 980px) {
336
- .operations-metrics { grid-template-columns: repeat(5, minmax(0, 1fr)); }
341
+ .operations-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
337
342
  .operations-metrics > * { min-width: 0; padding-inline: 9px; }
338
343
  .operations-priority { grid-template-columns: 1fr; }
339
344
  .attention-card > header { grid-template-columns: 38px 1fr; }
@@ -347,9 +352,13 @@
347
352
  .operations-overview > header,
348
353
  .attention-inbox-head { align-items: flex-start; flex-direction: column; padding: 18px; }
349
354
  .operations-review-total { align-self: stretch; justify-content: space-between; }
350
- .operations-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
355
+ .operations-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
351
356
  .operations-metrics > * { min-height: 62px; padding: 12px; }
352
357
  .attention-card-list { padding: 10px; }
358
+ .attention-inbox-summary { align-items: stretch; padding: 10px; }
359
+ .management-filter-all,
360
+ .management-filter-group { width: 100%; }
361
+ .management-filter-all button { width: 100%; justify-content: center; }
353
362
  .attention-card { padding: 13px; }
354
363
  .management-progress > p { align-items: flex-start; flex-direction: column; }
355
364
  }
@@ -8,7 +8,7 @@
8
8
  display: block;
9
9
  margin-top: 5px;
10
10
  color: #8290a2;
11
- font-size: 11px;
11
+ font-size: 12px;
12
12
  }
13
13
 
14
14
  .beginner-guide li>i {
@@ -34,7 +34,7 @@
34
34
  display: block;
35
35
  margin-top: 4px;
36
36
  color: #7e8da0;
37
- font-size: 11px;
37
+ font-size: 12px;
38
38
  line-height: 1.45;
39
39
  }
40
40
 
@@ -103,7 +103,7 @@
103
103
  .new-run-cta-copy small {
104
104
  margin-left: auto;
105
105
  color: rgba(4,16,23,.58);
106
- font-size: 9px;
106
+ font-size: 12px;
107
107
  }
108
108
 
109
109
  .new-run-cta-copy kbd {
@@ -152,7 +152,7 @@
152
152
  display: block;
153
153
  margin-top: 3px;
154
154
  color: #8d9dad;
155
- font-size: 10px;
155
+ font-size: 12px;
156
156
  }
157
157
 
158
158
  .beginner-guide {
@@ -178,7 +178,7 @@
178
178
  border-radius: 999px;
179
179
  background: #17394a;
180
180
  color: #8ce5ff!important;
181
- font-size: 10px!important;
181
+ font-size: 12px!important;
182
182
  font-weight: 800;
183
183
  letter-spacing: .06em;
184
184
  }
@@ -282,7 +282,7 @@
282
282
  display: block;
283
283
  margin-top: 5px;
284
284
  color: #a0adbd;
285
- font-size: 11px;
285
+ font-size: 12px;
286
286
  line-height: 1.5;
287
287
  }
288
288
 
@@ -290,7 +290,7 @@
290
290
  display: block;
291
291
  margin-top: 9px;
292
292
  color: #82dfff;
293
- font-size: 10px;
293
+ font-size: 12px;
294
294
  font-style: normal;
295
295
  font-weight: 750;
296
296
  }
@@ -330,7 +330,7 @@
330
330
  border-radius: 9px;
331
331
  background: #17222e;
332
332
  color: #9cabb9;
333
- font-size: 10px;
333
+ font-size: 12px;
334
334
  cursor: pointer;
335
335
  }
336
336
 
@@ -25,13 +25,13 @@
25
25
  .drawer-loading b {
26
26
  margin-top: 13px;
27
27
  color: #b9c4d1;
28
- font-size: 10px;
28
+ font-size: 12px;
29
29
  }
30
30
 
31
31
  .drawer-loading small {
32
32
  margin-top: 5px;
33
33
  color: #596678;
34
- font-size: 8px;
34
+ font-size: 12px;
35
35
  }
36
36
 
37
37
  .drawer-backdrop {
@@ -101,7 +101,7 @@
101
101
  max-width: 420px;
102
102
  margin-top: 8px;
103
103
  color: #78879a;
104
- font-size: 11px;
104
+ font-size: 12px;
105
105
  }
106
106
 
107
107
  .drawer-error button {
@@ -144,7 +144,7 @@
144
144
  background: #121924;
145
145
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
146
146
  color: #bdc7d4;
147
- font-size: 9px;
147
+ font-size: 12px;
148
148
  }
149
149
 
150
150
  .drawer-backdrop:not(.hidden) {
@@ -252,7 +252,7 @@
252
252
  font-weight: 700;
253
253
  letter-spacing: .12em;
254
254
  text-transform: uppercase;
255
- font-size: 11px;
255
+ font-size: 12px;
256
256
  }
257
257
 
258
258
  .drawer-title h2 {
@@ -8,7 +8,7 @@
8
8
  display: block;
9
9
  margin-bottom: 6px;
10
10
  color: #7e899b;
11
- font-size: 9px;
11
+ font-size: 12px;
12
12
  }
13
13
 
14
14
  .permission-toggle {
@@ -41,14 +41,14 @@
41
41
 
42
42
  .permission-toggle div strong {
43
43
  display: block;
44
- font-size: 9px;
44
+ font-size: 12px;
45
45
  }
46
46
 
47
47
  .permission-toggle div small {
48
48
  display: block;
49
49
  margin-top: 4px;
50
50
  color: #606c7e;
51
- font-size: 8px;
51
+ font-size: 12px;
52
52
  line-height: 1.45;
53
53
  }
54
54
 
@@ -63,12 +63,12 @@
63
63
  border-radius: 9px;
64
64
  background: rgba(76,227,154,.055);
65
65
  color: #8190a2;
66
- font-size: 10px;
66
+ font-size: 12px;
67
67
  }
68
68
 
69
69
  .runtime-strip b {
70
70
  color: #75e5aa;
71
- font-size: 10px;
71
+ font-size: 12px;
72
72
  white-space: nowrap;
73
73
  }
74
74
 
@@ -169,7 +169,7 @@
169
169
  .runtime-segment>header small {
170
170
  display: block;
171
171
  color: #718395;
172
- font-size: 9px;
172
+ font-size: 12px;
173
173
  font-weight: 800;
174
174
  letter-spacing: .08em;
175
175
  }
@@ -185,7 +185,7 @@
185
185
  display: block;
186
186
  margin-top: 3px;
187
187
  color: #67788a;
188
- font-size: 10px;
188
+ font-size: 12px;
189
189
  font-style: normal;
190
190
  }
191
191
 
@@ -211,7 +211,7 @@
211
211
  background: #111c26;
212
212
  color: #91a2b3;
213
213
  font-family: "Cascadia Code",Consolas,monospace;
214
- font-size: 11px;
214
+ font-size: 12px;
215
215
  font-weight: 800;
216
216
  }
217
217
 
@@ -237,7 +237,7 @@
237
237
  .runtime-segment-empty span {
238
238
  margin-top: 6px;
239
239
  color: #617183;
240
- font-size: 10px;
240
+ font-size: 12px;
241
241
  }
242
242
 
243
243
  .tmux-runtime .runtime-segment-icon {
@@ -294,7 +294,7 @@
294
294
  border-radius: 9px;
295
295
  background: color-mix(in srgb,var(--drawer-provider) 14%,#17212a);
296
296
  color: var(--drawer-provider);
297
- font-size: 8px;
297
+ font-size: 12px;
298
298
  font-weight: 850;
299
299
  letter-spacing: .08em;
300
300
  }
@@ -319,7 +319,7 @@
319
319
  white-space: nowrap;
320
320
  margin-top: 4px;
321
321
  color: #738394;
322
- font-size: 10px;
322
+ font-size: 12px;
323
323
  }
324
324
 
325
325
  .chat-roadmap>summary>i {
@@ -353,7 +353,7 @@
353
353
  min-width: 0;
354
354
  overflow: hidden;
355
355
  color: #aebbc5;
356
- font-size: 11px;
356
+ font-size: 12px;
357
357
  line-height: 1.5;
358
358
  text-overflow: ellipsis;
359
359
  white-space: nowrap;
@@ -372,7 +372,7 @@
372
372
  border-radius: 6px;
373
373
  background: #17232b;
374
374
  color: #6fcfae;
375
- font-size: 8px;
375
+ font-size: 12px;
376
376
  font-weight: 800;
377
377
  }
378
378
 
@@ -405,7 +405,7 @@
405
405
  .run-shortcut-hint {
406
406
  margin-right: auto;
407
407
  color: #627484;
408
- font-size: 9px;
408
+ font-size: 12px;
409
409
  }
410
410
 
411
411
  .run-shortcut-hint kbd {
@@ -456,7 +456,7 @@
456
456
  letter-spacing: .14em;
457
457
  text-transform: uppercase;
458
458
  color: #8998aa;
459
- font-size: 11px;
459
+ font-size: 12px;
460
460
  }
461
461
 
462
462
  .icon-button {
@@ -487,7 +487,7 @@
487
487
  .provider-rail-item small {
488
488
  margin-left: auto;
489
489
  color: #93a1b1;
490
- font-size: 11px;
490
+ font-size: 12px;
491
491
  }
492
492
 
493
493
  .runtime-disclosure {
@@ -523,12 +523,12 @@
523
523
  display: block;
524
524
  margin-top: 4px;
525
525
  color: #91a39f;
526
- font-size: 11px;
526
+ font-size: 12px;
527
527
  }
528
528
 
529
529
  .runtime-disclosure>summary em {
530
530
  color: #7de0ba;
531
- font-size: 11px;
531
+ font-size: 12px;
532
532
  font-style: normal;
533
533
  font-weight: 750;
534
534
  }
@@ -638,11 +638,11 @@
638
638
  padding-top: 9px;
639
639
  border-top: 1px solid var(--line-soft);
640
640
  color: #909eaf;
641
- font-size: 11px;
641
+ font-size: 12px;
642
642
  }
643
643
 
644
644
  .chat-bubble-head b {
645
- font-size: 11px;
645
+ font-size: 12px;
646
646
  }
647
647
 
648
648
  .meta-chip {
@@ -655,13 +655,13 @@
655
655
  border: 1px solid var(--line);
656
656
  border-radius: 8px;
657
657
  background: #0b0f17;
658
- font-size: 8px;
658
+ font-size: 12px;
659
659
  min-height: 32px;
660
660
  color: #98a6b6;
661
661
  }
662
662
 
663
663
  .chat-bubble-head span {
664
- font-size: 10px;
664
+ font-size: 12px;
665
665
  color: #8997a8;
666
666
  }
667
667
 
@@ -673,7 +673,7 @@
673
673
  border-radius: 9px;
674
674
  background: #2c2314;
675
675
  color: #f0ce8b;
676
- font-size: 11px;
676
+ font-size: 12px;
677
677
  font-weight: 750;
678
678
  cursor: pointer;
679
679
  }
@@ -685,7 +685,7 @@
685
685
  border-radius: 10px;
686
686
  background: #211a10;
687
687
  color: #e7c681;
688
- font-size: 11px;
688
+ font-size: 12px;
689
689
  line-height: 1.55;
690
690
  }
691
691