loadtoagent 1.3.5 → 1.3.7

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.
@@ -14,7 +14,7 @@
14
14
  }
15
15
 
16
16
  .home-attention-strip {
17
- min-height: 72px;
17
+ min-height: 82px;
18
18
  display: grid;
19
19
  grid-template-columns: minmax(190px,240px) minmax(0,1fr) auto;
20
20
  align-items: stretch;
@@ -221,8 +221,8 @@
221
221
  }
222
222
 
223
223
  .live-section {
224
- margin-top: 16px;
225
- padding: 20px;
224
+ margin-top: 19px;
225
+ padding: 20px 17px 10px;
226
226
  background: radial-gradient(circle at 18% 0,rgba(76,227,154,.065),transparent 28%),linear-gradient(145deg,rgba(13,22,25,.98),rgba(8,13,20,.96) 48%);
227
227
  }
228
228
 
@@ -239,6 +239,316 @@
239
239
  margin-bottom: 10px;
240
240
  }
241
241
 
242
+ .sidebar > .sidebar-footer {
243
+ margin-top: auto;
244
+ }
245
+
246
+ .control-room-project-toolbar,
247
+ .control-room-list-toolbar {
248
+ width: 100%;
249
+ min-width: 0;
250
+ display: flex;
251
+ align-items: center;
252
+ }
253
+
254
+ .control-room-project-toolbar {
255
+ min-height: 52px;
256
+ gap: var(--space-3,12px);
257
+ margin: 0 0 var(--space-3,12px);
258
+ padding: 6px;
259
+ border: 1px solid rgba(89,216,255,.14);
260
+ border-radius: 11px;
261
+ background: rgba(7,13,20,.58);
262
+ }
263
+
264
+ .control-room-project-list {
265
+ min-width: 0;
266
+ display: flex;
267
+ flex: 1 1 auto;
268
+ align-items: center;
269
+ gap: 10px;
270
+ max-height: none;
271
+ padding: 0;
272
+ overflow-x: auto;
273
+ overflow-y: hidden;
274
+ scrollbar-width: none;
275
+ }
276
+
277
+ .control-room-project-list::-webkit-scrollbar {
278
+ display: none;
279
+ }
280
+
281
+ .control-room-project-list.is-overflowing {
282
+ padding-bottom: 5px;
283
+ scrollbar-color: rgba(89,216,255,.58) rgba(89,216,255,.08);
284
+ scrollbar-width: thin;
285
+ mask-image: linear-gradient(to right,#000 0,#000 calc(100% - 28px),transparent 100%);
286
+ }
287
+
288
+ .control-room-project-list.is-overflowing.is-scrolled-end {
289
+ mask-image: none;
290
+ }
291
+
292
+ .control-room-project-list.is-overflowing::-webkit-scrollbar {
293
+ display: block;
294
+ height: 5px;
295
+ }
296
+
297
+ .control-room-project-list.is-overflowing::-webkit-scrollbar-track {
298
+ border-radius: 999px;
299
+ background: rgba(89,216,255,.08);
300
+ }
301
+
302
+ .control-room-project-list.is-overflowing::-webkit-scrollbar-thumb {
303
+ border-radius: 999px;
304
+ background: rgba(89,216,255,.58);
305
+ }
306
+
307
+ .control-room-project-toolbar .workspace-item {
308
+ width: auto;
309
+ min-width: max-content;
310
+ min-height: 40px !important;
311
+ display: inline-flex;
312
+ flex: 0 0 auto;
313
+ align-items: center;
314
+ gap: 8px;
315
+ padding: 0 12px;
316
+ border: 1px solid rgba(106,132,154,.25);
317
+ border-radius: 8px;
318
+ background: rgba(13,21,30,.88);
319
+ color: #aebcca;
320
+ }
321
+
322
+ .control-room-project-toolbar .workspace-item::before {
323
+ display: none;
324
+ }
325
+
326
+ .control-room-project-toolbar .workspace-item strong {
327
+ flex: none;
328
+ color: inherit;
329
+ font-size: 12px;
330
+ font-weight: 680;
331
+ }
332
+
333
+ .control-room-project-toolbar .workspace-item small {
334
+ min-width: 20px;
335
+ height: 22px;
336
+ display: inline-grid;
337
+ place-items: center;
338
+ margin: 0;
339
+ padding: 0 6px;
340
+ border-radius: 999px;
341
+ background: rgba(115,139,159,.15);
342
+ color: #bcc8d2;
343
+ font-size: 12px;
344
+ font-variant-numeric: tabular-nums;
345
+ }
346
+
347
+ .control-room-project-toolbar .workspace-item:hover {
348
+ border-color: rgba(89,216,255,.38);
349
+ background: rgba(89,216,255,.065);
350
+ color: #e6f2f5;
351
+ }
352
+
353
+ .control-room-project-toolbar .workspace-item.selected {
354
+ border-color: rgba(76,227,154,.48);
355
+ background: rgba(76,227,154,.09);
356
+ color: #66e4af;
357
+ box-shadow: inset 0 0 0 1px rgba(76,227,154,.05),0 0 16px rgba(76,227,154,.055);
358
+ }
359
+
360
+ .control-room-project-toolbar .workspace-item.selected small {
361
+ background: rgba(76,227,154,.16);
362
+ color: #70e8b7;
363
+ }
364
+
365
+ .control-room-add-project {
366
+ min-width: max-content;
367
+ min-height: 40px !important;
368
+ display: inline-flex;
369
+ flex: 0 0 auto;
370
+ align-items: center;
371
+ justify-content: center;
372
+ gap: 8px;
373
+ padding: 0 13px;
374
+ border: 1px solid rgba(89,216,255,.72);
375
+ border-radius: 8px;
376
+ background: rgba(9,27,37,.72);
377
+ color: #81e5f4;
378
+ font-size: 12px;
379
+ font-weight: 720;
380
+ cursor: pointer;
381
+ }
382
+
383
+ #controlRoomProjectToolbar #addWorkspaceBtn {
384
+ min-height: 40px !important;
385
+ }
386
+
387
+ .control-room-add-project:hover {
388
+ background: rgba(89,216,255,.11);
389
+ color: #e7fbff;
390
+ }
391
+
392
+ .control-room-list-toolbar {
393
+ min-height: 40px;
394
+ gap: 10px;
395
+ margin-bottom: var(--space-3,12px);
396
+ }
397
+
398
+ .control-room-toolbar-spacer {
399
+ flex: 1 1 auto;
400
+ min-width: 0;
401
+ }
402
+
403
+ .control-room-select-field {
404
+ min-width: 0;
405
+ }
406
+
407
+ .control-room-select-field select {
408
+ width: 136px;
409
+ min-width: 136px;
410
+ height: 40px;
411
+ min-height: 40px !important;
412
+ padding: 0 31px 0 12px;
413
+ border: 1px solid rgba(104,130,151,.28);
414
+ border-radius: 8px;
415
+ background-color: rgba(11,18,27,.88);
416
+ color: #b9c6d0;
417
+ font-size: 12px;
418
+ }
419
+
420
+ .control-room-project-select-field select {
421
+ width: 163px;
422
+ min-width: 150px;
423
+ }
424
+
425
+ #controlRoomListToolbar select {
426
+ height: 40px;
427
+ min-height: 40px !important;
428
+ }
429
+
430
+ .control-room-search {
431
+ width: 42px;
432
+ height: 40px;
433
+ position: relative;
434
+ display: flex;
435
+ flex: 0 0 auto;
436
+ align-items: center;
437
+ overflow: hidden;
438
+ border: 1px solid rgba(104,130,151,.28);
439
+ border-radius: 8px;
440
+ background: rgba(11,18,27,.88);
441
+ transition: width 160ms ease,border-color 160ms ease;
442
+ }
443
+
444
+ .control-room-search.is-open {
445
+ width: min(220px,24vw);
446
+ border-color: rgba(89,216,255,.48);
447
+ }
448
+
449
+ .control-room-search input {
450
+ width: 100%;
451
+ min-width: 0;
452
+ height: 100%;
453
+ padding: 0 38px 0 10px;
454
+ border: 0;
455
+ outline: 0;
456
+ background: transparent;
457
+ color: #dbe7ed;
458
+ font-size: 12px;
459
+ opacity: 0;
460
+ pointer-events: none;
461
+ }
462
+
463
+ .control-room-search.is-open input {
464
+ opacity: 1;
465
+ pointer-events: auto;
466
+ }
467
+
468
+ .control-room-search button {
469
+ width: 40px;
470
+ height: 40px;
471
+ min-width: 40px;
472
+ min-height: 40px !important;
473
+ position: absolute;
474
+ right: 0;
475
+ display: grid;
476
+ place-items: center;
477
+ border: 0;
478
+ background: rgba(11,18,27,.94);
479
+ color: #9fb0be;
480
+ cursor: pointer;
481
+ }
482
+
483
+ .control-room-search button:hover {
484
+ color: #7ce6f4;
485
+ }
486
+
487
+ #controlRoomSearchBtn {
488
+ min-width: 40px;
489
+ min-height: 40px !important;
490
+ }
491
+
492
+ .control-room-pagination {
493
+ display: flex;
494
+ flex: 0 0 auto;
495
+ align-items: center;
496
+ gap: 10px;
497
+ }
498
+
499
+ .control-room-page-summary {
500
+ min-width: 76px;
501
+ color: #c3d0d8;
502
+ text-align: center;
503
+ white-space: nowrap;
504
+ font-size: 12px;
505
+ font-variant-numeric: tabular-nums;
506
+ }
507
+
508
+ .control-room-page-buttons {
509
+ display: flex;
510
+ flex: 0 0 auto;
511
+ gap: 10px;
512
+ }
513
+
514
+ .control-room-page-buttons button {
515
+ width: 40px;
516
+ height: 40px;
517
+ min-width: 40px;
518
+ min-height: 40px !important;
519
+ display: grid;
520
+ place-items: center;
521
+ border: 1px solid rgba(104,130,151,.28);
522
+ background: rgba(11,18,27,.88);
523
+ color: #a8b7c4;
524
+ cursor: pointer;
525
+ }
526
+
527
+ .control-room-page-buttons button:first-child {
528
+ border-radius: 8px;
529
+ }
530
+
531
+ .control-room-page-buttons button:last-child {
532
+ margin-left: 0;
533
+ border-radius: 8px;
534
+ }
535
+
536
+ .control-room-page-buttons button:hover:not(:disabled) {
537
+ border-color: rgba(89,216,255,.45);
538
+ color: #80e6f4;
539
+ }
540
+
541
+ .control-room-page-buttons button:disabled {
542
+ opacity: .36;
543
+ cursor: default;
544
+ }
545
+
546
+ #controlRoomPagePrev,
547
+ #controlRoomPageNext {
548
+ min-width: 40px;
549
+ min-height: 40px !important;
550
+ }
551
+
242
552
  .control-room-legend {
243
553
  display: flex;
244
554
  align-items: center;
@@ -283,11 +593,231 @@
283
593
 
284
594
  .control-room-overview {
285
595
  display: grid;
286
- gap: 13px;
596
+ gap: var(--space-3,12px);
597
+ }
598
+
599
+ .control-room-project-group {
600
+ position: relative;
601
+ min-width: 0;
602
+ overflow: hidden;
603
+ border: 1px solid rgba(76,227,154,.22);
604
+ border-radius: 14px;
605
+ background: rgba(7,12,18,.72);
606
+ box-shadow: inset 0 1px rgba(255,255,255,.018);
607
+ }
608
+
609
+ body details.control-room-project-group > summary.control-project-header {
610
+ min-height: 50px !important;
611
+ display: flex;
612
+ align-items: center;
613
+ gap: 10px;
614
+ padding: 0 142px 0 12px;
615
+ border-bottom: 1px solid transparent;
616
+ color: #c9d6df;
617
+ cursor: pointer;
618
+ list-style: none;
619
+ }
620
+
621
+ .control-project-header::-webkit-details-marker {
622
+ display: none;
623
+ }
624
+
625
+ .control-room-project-group[open] > .control-project-header {
626
+ border-bottom-color: rgba(104,130,151,.14);
627
+ }
628
+
629
+ .control-project-heading {
630
+ min-width: 0;
631
+ display: flex;
632
+ flex: 1 1 auto;
633
+ align-items: center;
634
+ gap: 8px;
635
+ }
636
+
637
+ .control-project-heading > i {
638
+ width: 18px;
639
+ height: 18px;
640
+ display: grid;
641
+ place-items: center;
642
+ color: #69dcef;
643
+ font-style: normal;
644
+ font-size: 15px;
645
+ }
646
+
647
+ .control-project-heading > i::before {
648
+ content: "";
649
+ width: 12px;
650
+ height: 9px;
651
+ border: 1px solid currentColor;
652
+ border-radius: 2px;
653
+ box-shadow: 0 -3px 0 -1px currentColor;
654
+ }
655
+
656
+ .control-project-heading > i {
657
+ font-size: 0;
658
+ }
659
+
660
+ .control-project-heading b {
661
+ overflow: hidden;
662
+ color: #dce6ec;
663
+ text-overflow: ellipsis;
664
+ white-space: nowrap;
665
+ font-size: 13px;
666
+ }
667
+
668
+ .control-project-heading small {
669
+ color: #9aabba;
670
+ white-space: nowrap;
671
+ font-size: 12px;
672
+ }
673
+
674
+ .control-project-heading em {
675
+ min-width: 22px;
676
+ height: 22px;
677
+ display: grid;
678
+ place-items: center;
679
+ border-radius: 999px;
680
+ background: rgba(89,216,255,.12);
681
+ color: #73deee;
682
+ font-size: 12px;
683
+ font-style: normal;
684
+ font-weight: 750;
685
+ }
686
+
687
+ .control-project-handle {
688
+ width: 24px;
689
+ height: 28px;
690
+ position: absolute;
691
+ top: 11px;
692
+ right: 133px;
693
+ display: grid;
694
+ place-items: center;
695
+ color: #718597;
696
+ }
697
+
698
+ .control-project-handle::before {
699
+ width: 3px;
700
+ height: 3px;
701
+ border-radius: 50%;
702
+ background: currentColor;
703
+ box-shadow: 0 -5px currentColor,0 5px currentColor,6px -5px currentColor,6px 0 currentColor,6px 5px currentColor;
704
+ content: "";
705
+ transform: translateX(-3px);
706
+ }
707
+
708
+ .control-project-flow-link {
709
+ min-height: 44px;
710
+ position: absolute;
711
+ z-index: 2;
712
+ top: 0;
713
+ right: 15px;
714
+ display: inline-flex;
715
+ flex: 0 0 auto;
716
+ align-items: center;
717
+ justify-content: center;
718
+ padding: 0;
719
+ border: 0;
720
+ background: transparent;
721
+ color: #8295a6;
722
+ white-space: nowrap;
723
+ font-family: inherit;
724
+ font-size: 12px;
725
+ cursor: pointer;
726
+ }
727
+
728
+ .control-project-flow-link > span {
729
+ min-height: 30px;
730
+ display: inline-flex;
731
+ align-items: center;
732
+ padding: 0 7px;
733
+ border: 1px solid rgba(104,130,151,.24);
734
+ border-radius: 8px;
735
+ background: rgba(12,20,29,.74);
736
+ }
737
+
738
+ .control-project-flow-link:hover > span,
739
+ .control-project-flow-link:focus-visible > span {
740
+ border-color: rgba(89,216,255,.46);
741
+ color: #b6edf4;
742
+ }
743
+
744
+ .control-room-project-group:not([open]) .control-project-header::before {
745
+ content: "›";
746
+ color: #69dcef;
747
+ font-size: 18px;
748
+ }
749
+
750
+ .control-room-project-group[open] .control-project-header::before {
751
+ display: none;
752
+ }
753
+
754
+ .control-project-body {
755
+ min-width: 0;
756
+ }
757
+
758
+ .control-project-body .control-room-session {
759
+ border: 0;
760
+ border-radius: 0;
761
+ background: transparent;
762
+ box-shadow: none;
763
+ }
764
+
765
+ .control-project-body .control-room-session + .control-room-session {
766
+ border-top: 1px solid rgba(104,130,151,.17);
767
+ }
768
+
769
+ .control-project-body .control-room-session > header {
770
+ min-height: 42px;
771
+ padding: 5px 15px;
772
+ }
773
+
774
+ .control-project-body .control-room-session > header > .session-drag-handle,
775
+ .control-project-body .control-room-session > header > .control-session-flow {
776
+ display: none;
777
+ }
778
+
779
+ .control-project-body .control-room-flow {
780
+ padding: 10px 15px 12px 16px;
781
+ }
782
+
783
+ .control-project-body .control-column-label {
784
+ min-height: 24px;
785
+ height: 24px;
786
+ line-height: 24px;
787
+ }
788
+
789
+ .control-project-body .control-room-main {
790
+ gap: 10px;
791
+ padding: 14px;
792
+ }
793
+
794
+ .control-project-body .control-main-now {
795
+ padding: 9px 10px;
796
+ }
797
+
798
+ .control-room-project-group:not([open]) .control-project-header {
799
+ min-height: 50px !important;
800
+ }
801
+
802
+ .control-room-project-group:not([open]) {
803
+ margin-top: 0;
804
+ }
805
+
806
+ .control-room-project-group:not([open]) .control-project-handle {
807
+ display: none;
808
+ }
809
+
810
+ .control-room-project-group:not([open]) .control-project-heading {
811
+ padding-left: 10px;
812
+ }
813
+
814
+ .control-room-project-group:not([open]) .control-project-heading > i {
815
+ display: none;
287
816
  }
288
817
 
289
818
  .control-room-session {
290
819
  --provider: #7ddcf2;
820
+ position: relative;
291
821
  min-width: 0;
292
822
  overflow: hidden;
293
823
  border: 1px solid color-mix(in srgb,var(--provider) 22%,#263442);
@@ -296,6 +826,55 @@
296
826
  box-shadow: 0 16px 38px rgba(0,0,0,.17),inset 0 1px rgba(255,255,255,.025);
297
827
  }
298
828
 
829
+ [data-session-sortable] {
830
+ cursor: grab;
831
+ }
832
+
833
+ [data-session-sortable]:active,
834
+ [data-session-sortable].session-sort-dragging {
835
+ cursor: grabbing;
836
+ }
837
+
838
+ [data-session-sortable].session-sort-dragging {
839
+ opacity: .48;
840
+ transform: scale(.985);
841
+ }
842
+
843
+ [data-session-sortable][data-session-drop-edge]::after {
844
+ position: absolute;
845
+ z-index: 8;
846
+ border-radius: 999px;
847
+ background: #64e2b5;
848
+ box-shadow: 0 0 0 3px rgba(100,226,181,.13),0 0 16px rgba(100,226,181,.55);
849
+ content: "";
850
+ pointer-events: none;
851
+ }
852
+
853
+ [data-session-sortable][data-session-drop-edge="top"]::after,
854
+ [data-session-sortable][data-session-drop-edge="bottom"]::after {
855
+ right: 12px;
856
+ left: 12px;
857
+ height: 3px;
858
+ }
859
+
860
+ [data-session-sortable][data-session-drop-edge="top"]::after { top: 3px; }
861
+ [data-session-sortable][data-session-drop-edge="bottom"]::after { bottom: 3px; }
862
+
863
+ [data-session-sortable][data-session-drop-edge="left"]::after,
864
+ [data-session-sortable][data-session-drop-edge="right"]::after {
865
+ top: 12px;
866
+ bottom: 12px;
867
+ width: 3px;
868
+ }
869
+
870
+ [data-session-sortable][data-session-drop-edge="left"]::after { left: 3px; }
871
+ [data-session-sortable][data-session-drop-edge="right"]::after { right: 3px; }
872
+
873
+ .control-room-session:focus-visible {
874
+ outline: 2px solid color-mix(in srgb,var(--provider) 78%,#67dfec);
875
+ outline-offset: 3px;
876
+ }
877
+
299
878
  .control-room-session > header {
300
879
  min-height: 48px;
301
880
  display: flex;
@@ -342,6 +921,37 @@
342
921
  animation: control-room-pulse 1.8s ease-in-out infinite;
343
922
  }
344
923
 
924
+ .control-room-session.is-waiting {
925
+ border-color: rgba(232,184,91,.3);
926
+ }
927
+
928
+ .control-room-session.is-waiting .control-session-live {
929
+ color: #e5bd70;
930
+ }
931
+
932
+ .control-room-session.is-waiting .control-session-live i {
933
+ background: #e5b85f;
934
+ box-shadow: 0 0 10px rgba(229,184,95,.38);
935
+ animation: none;
936
+ }
937
+
938
+ .control-room-session.is-waiting.has-background-work .control-session-live {
939
+ color: #8ddfc2;
940
+ }
941
+
942
+ .control-room-session.is-waiting.has-background-work .control-session-live i {
943
+ background: linear-gradient(90deg,#e5b85f 0 50%,#55dfa9 50% 100%);
944
+ box-shadow: 0 0 10px rgba(85,223,169,.34);
945
+ animation: control-room-pulse 1.8s ease-in-out infinite;
946
+ }
947
+
948
+ .control-session-retention {
949
+ flex: 0 0 auto;
950
+ color: #9d8a68;
951
+ white-space: nowrap;
952
+ font-size: 12px;
953
+ }
954
+
345
955
  .control-room-session > header > button {
346
956
  min-height: 30px;
347
957
  padding: 0 9px;
@@ -359,40 +969,45 @@
359
969
  color: #d8e4eb;
360
970
  }
361
971
 
362
- .session-order-actions {
363
- display: inline-flex;
364
- flex: 0 0 auto;
365
- align-items: center;
366
- gap: 3px;
367
- margin-left: auto;
972
+ .control-room-session > header > .control-session-archive {
973
+ border-color: rgba(222,177,88,.28);
974
+ color: #d8b66f;
368
975
  }
369
976
 
370
- .session-order-actions button {
371
- width: 26px;
372
- height: 26px;
977
+ .session-drag-handle {
978
+ width: 28px;
979
+ height: 28px;
373
980
  display: grid;
981
+ flex: 0 0 auto;
374
982
  place-items: center;
375
- padding: 0;
376
- border: 1px solid rgba(101,138,159,.2);
377
- border-radius: 7px;
378
- background: rgba(13,21,30,.72);
379
- color: #7f91a3;
380
- font: inherit;
381
- font-size: 12px;
382
- cursor: pointer;
983
+ margin-left: auto;
984
+ border-radius: 8px;
985
+ color: #718597;
986
+ cursor: grab;
987
+ transition: color var(--motion-fast) ease,background-color var(--motion-fast) ease;
383
988
  }
384
989
 
385
- .session-order-actions button:hover,
386
- .session-order-actions button:focus-visible {
387
- border-color: color-mix(in srgb,var(--provider) 46%,#3c4d5b);
388
- color: #dce8ef;
389
- outline: none;
990
+ .session-drag-handle::before {
991
+ width: 3px;
992
+ height: 3px;
993
+ border-radius: 50%;
994
+ background: currentColor;
995
+ box-shadow: 0 -5px currentColor,0 5px currentColor,6px -5px currentColor,6px 0 currentColor,6px 5px currentColor;
996
+ content: "";
997
+ transform: translateX(-3px);
998
+ }
999
+
1000
+ [data-session-sortable]:hover .session-drag-handle,
1001
+ [data-session-sortable]:focus-visible .session-drag-handle,
1002
+ [data-session-sortable].session-sort-dragging .session-drag-handle {
1003
+ color: #7de7c1;
1004
+ background: rgba(79,190,153,.1);
390
1005
  }
391
1006
 
392
1007
  .control-room-flow {
393
1008
  min-width: 0;
394
1009
  display: grid;
395
- grid-template-columns: minmax(230px,.82fr) 38px minmax(350px,1.35fr) 38px minmax(235px,.82fr);
1010
+ grid-template-columns: minmax(300px,1fr) 46px minmax(420px,1.42fr) 46px minmax(260px,.86fr);
396
1011
  align-items: center;
397
1012
  gap: 0;
398
1013
  padding: 14px;
@@ -614,7 +1229,7 @@
614
1229
  .control-room-node-list {
615
1230
  display: grid;
616
1231
  grid-template-columns: repeat(2,minmax(0,1fr));
617
- gap: 8px;
1232
+ gap: 10px;
618
1233
  }
619
1234
 
620
1235
  .control-room-node {
@@ -705,6 +1320,17 @@
705
1320
  box-shadow: none;
706
1321
  }
707
1322
 
1323
+ .control-room-node.is-unverified {
1324
+ border-color: rgba(229,184,95,.28);
1325
+ opacity: .82;
1326
+ filter: saturate(.72);
1327
+ box-shadow: none;
1328
+ }
1329
+
1330
+ .control-room-node.is-unverified .control-node-state {
1331
+ color: #d6b36c;
1332
+ }
1333
+
708
1334
  .control-room-node.overflow-node {
709
1335
  border-style: dashed;
710
1336
  border-color: rgba(89,216,255,.25);
@@ -718,7 +1344,7 @@
718
1344
 
719
1345
  .completed-list {
720
1346
  grid-template-columns: 1fr;
721
- gap: 6px;
1347
+ gap: 10px;
722
1348
  }
723
1349
 
724
1350
  .completed-list .control-room-node {
@@ -815,7 +1441,7 @@
815
1441
  font-style: normal;
816
1442
  }
817
1443
 
818
- .session-card.session-record .card-footer .session-order-actions {
1444
+ .session-card.session-record .card-footer .session-drag-handle {
819
1445
  margin-right: 2px;
820
1446
  }
821
1447
 
@@ -988,6 +1614,25 @@
988
1614
  font-size: 12px;
989
1615
  }
990
1616
 
1617
+ .subagent-assignment-card aside {
1618
+ margin-top: 10px;
1619
+ padding: 10px 12px;
1620
+ border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
1621
+ border-radius: 10px;
1622
+ background: color-mix(in srgb, var(--panel) 72%, transparent);
1623
+ }
1624
+
1625
+ .subagent-assignment-card aside b {
1626
+ font-size: 11px;
1627
+ color: var(--muted);
1628
+ }
1629
+
1630
+ .subagent-assignment-card aside p {
1631
+ margin-top: 5px;
1632
+ font-size: 12px;
1633
+ color: var(--muted);
1634
+ }
1635
+
991
1636
  .subagent-work-source {
992
1637
  margin-bottom: 12px;
993
1638
  padding: 0 2px;
@@ -1170,6 +1815,14 @@
1170
1815
  50% { box-shadow: 0 0 0 5px rgba(89,216,255,.07),0 0 22px rgba(89,216,255,.08); }
1171
1816
  }
1172
1817
 
1818
+ @media (min-width:1451px) {
1819
+ .main-stage {
1820
+ padding-top: 29px;
1821
+ padding-right: 44px;
1822
+ padding-left: 44px;
1823
+ }
1824
+ }
1825
+
1173
1826
  @media (max-width:1450px) {
1174
1827
  .home-attention-list {
1175
1828
  grid-template-columns: repeat(2,minmax(0,1fr));
@@ -1238,6 +1891,19 @@
1238
1891
  .session-grid {
1239
1892
  grid-template-columns: repeat(2,minmax(0,1fr));
1240
1893
  }
1894
+
1895
+ .control-room-list-toolbar {
1896
+ flex-wrap: wrap;
1897
+ }
1898
+
1899
+ .control-room-toolbar-spacer {
1900
+ flex-basis: 100%;
1901
+ height: 0;
1902
+ }
1903
+
1904
+ .control-room-select-field:first-of-type {
1905
+ margin-left: auto;
1906
+ }
1241
1907
  }
1242
1908
 
1243
1909
  @media (max-width:700px) {
@@ -1333,12 +1999,112 @@
1333
1999
  display: none;
1334
2000
  }
1335
2001
 
2002
+ .control-room-project-toolbar {
2003
+ gap: 10px;
2004
+ margin-top: 4px;
2005
+ padding: 6px;
2006
+ }
2007
+
2008
+ .control-room-project-toolbar .workspace-item,
2009
+ .control-room-add-project {
2010
+ min-height: 44px !important;
2011
+ }
2012
+
2013
+ #controlRoomProjectToolbar #addWorkspaceBtn {
2014
+ min-height: 44px !important;
2015
+ }
2016
+
2017
+ .control-room-add-project {
2018
+ padding: 0 10px;
2019
+ }
2020
+
2021
+ .control-room-list-toolbar {
2022
+ gap: 10px;
2023
+ flex-wrap: nowrap;
2024
+ }
2025
+
2026
+ .control-room-toolbar-spacer,
2027
+ .control-room-project-select-field {
2028
+ display: none;
2029
+ }
2030
+
2031
+ .control-room-select-field:first-of-type {
2032
+ flex: 1 1 130px;
2033
+ margin-left: 0;
2034
+ }
2035
+
2036
+ .control-room-select-field select {
2037
+ width: 100%;
2038
+ min-width: 0;
2039
+ height: 44px;
2040
+ min-height: 44px !important;
2041
+ }
2042
+
2043
+ #controlRoomListToolbar select,
2044
+ #controlRoomSearchBtn,
2045
+ #controlRoomPagePrev,
2046
+ #controlRoomPageNext {
2047
+ min-height: 44px !important;
2048
+ }
2049
+
2050
+ .control-room-search,
2051
+ .control-room-page-buttons button {
2052
+ height: 44px;
2053
+ min-height: 44px !important;
2054
+ }
2055
+
2056
+ .control-room-search {
2057
+ width: 42px;
2058
+ }
2059
+
2060
+ .control-room-search.is-open {
2061
+ width: min(210px,55vw);
2062
+ flex: 1 1 180px;
2063
+ }
2064
+
2065
+ .control-room-search button {
2066
+ width: 40px;
2067
+ height: 38px;
2068
+ }
2069
+
2070
+ .control-room-page-buttons button {
2071
+ width: 42px;
2072
+ }
2073
+
2074
+ .control-room-pagination {
2075
+ margin-left: auto;
2076
+ gap: 10px;
2077
+ }
2078
+
2079
+ .control-room-page-summary {
2080
+ min-width: 62px;
2081
+ }
2082
+
2083
+ .control-project-header {
2084
+ min-height: 48px;
2085
+ padding: 0 9px;
2086
+ }
2087
+
2088
+ .control-project-heading small {
2089
+ overflow: hidden;
2090
+ text-overflow: ellipsis;
2091
+ }
2092
+
2093
+ .control-project-flow-link,
2094
+ .control-project-handle {
2095
+ display: none;
2096
+ }
2097
+
1336
2098
  .control-room-legend > span,
1337
2099
  .control-room-legend > b {
1338
2100
  font-size: 12px;
1339
2101
  }
1340
2102
 
1341
- .control-room-session > header > button {
2103
+ .control-room-session > header > button:not(.control-session-archive) {
2104
+ display: none;
2105
+ }
2106
+
2107
+ .control-session-retention {
1342
2108
  display: none;
1343
2109
  }
1344
2110
 
@@ -1350,6 +2116,10 @@
1350
2116
  padding: 9px;
1351
2117
  }
1352
2118
 
2119
+ .control-project-body .control-room-session {
2120
+ padding: 0;
2121
+ }
2122
+
1353
2123
  .control-room-flow {
1354
2124
  gap: 8px;
1355
2125
  }
@@ -1430,6 +2200,36 @@
1430
2200
  }
1431
2201
  }
1432
2202
 
2203
+ @media (max-width:480px) {
2204
+ .control-room-project-toolbar {
2205
+ align-items: stretch;
2206
+ }
2207
+
2208
+ .control-room-project-list {
2209
+ padding-bottom: 1px;
2210
+ }
2211
+
2212
+ .control-room-add-project span {
2213
+ max-width: 76px;
2214
+ overflow: hidden;
2215
+ text-overflow: ellipsis;
2216
+ white-space: nowrap;
2217
+ }
2218
+
2219
+ .control-room-page-summary {
2220
+ min-width: 56px;
2221
+ margin-left: 0;
2222
+ }
2223
+
2224
+ .control-project-heading small {
2225
+ display: none;
2226
+ }
2227
+
2228
+ .control-project-heading b {
2229
+ max-width: 55vw;
2230
+ }
2231
+ }
2232
+
1433
2233
  @media (prefers-reduced-motion:reduce) {
1434
2234
  .control-session-live i,
1435
2235
  .control-flow-link > i,