@shapeshift-labs/frontier-loom-ui 0.1.3 → 0.1.5

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.
@@ -541,6 +541,7 @@ tr.risk-review td:first-child { color: var(--review); }
541
541
  padding: 2px 10px 12px;
542
542
  }
543
543
  .work-layout,
544
+ .running-layout,
544
545
  .agent-work-layout,
545
546
  .action-layout,
546
547
  .performance-layout,
@@ -564,6 +565,173 @@ tr.risk-review td:first-child { color: var(--review); }
564
565
  overflow: auto;
565
566
  grid-template-rows: auto minmax(0, 1fr);
566
567
  }
568
+ .running-layout {
569
+ grid-template-rows: auto minmax(0, 1fr);
570
+ overflow: hidden;
571
+ }
572
+ .running-filters {
573
+ min-width: 0;
574
+ display: grid;
575
+ gap: 8px;
576
+ border: 1px solid var(--line);
577
+ border-radius: 7px;
578
+ background: #0d0f10;
579
+ padding: 10px;
580
+ }
581
+ .running-filter-group {
582
+ min-width: 0;
583
+ display: grid;
584
+ grid-template-columns: 62px minmax(0, 1fr);
585
+ gap: 10px;
586
+ align-items: start;
587
+ }
588
+ .running-filter-group > span {
589
+ color: var(--muted);
590
+ font-size: 11px;
591
+ font-weight: 700;
592
+ line-height: 1.9;
593
+ text-transform: uppercase;
594
+ }
595
+ .running-filter-group > div {
596
+ min-width: 0;
597
+ display: flex;
598
+ gap: 6px;
599
+ overflow-x: auto;
600
+ scrollbar-gutter: stable;
601
+ }
602
+ .running-filter {
603
+ flex: 0 0 auto;
604
+ max-width: 280px;
605
+ min-width: 0;
606
+ border: 1px solid var(--line);
607
+ border-radius: 999px;
608
+ background: #090a0b;
609
+ color: var(--muted);
610
+ padding: 5px 9px;
611
+ overflow: hidden;
612
+ text-overflow: ellipsis;
613
+ white-space: nowrap;
614
+ font-size: 12px;
615
+ cursor: pointer;
616
+ }
617
+ .running-filter:hover,
618
+ .running-filter:focus-visible {
619
+ border-color: var(--line-strong);
620
+ color: var(--text);
621
+ }
622
+ .running-filter:focus-visible {
623
+ outline: 2px solid var(--focus);
624
+ outline-offset: 2px;
625
+ }
626
+ .running-filter.active {
627
+ background: var(--surface-2);
628
+ border-color: var(--line-strong);
629
+ color: var(--text);
630
+ }
631
+ .running-graph-section {
632
+ min-height: 0;
633
+ display: grid;
634
+ grid-template-rows: auto minmax(0, 1fr);
635
+ overflow: hidden;
636
+ }
637
+ .running-graph-viewport {
638
+ min-width: 0;
639
+ min-height: 0;
640
+ overflow: auto;
641
+ scrollbar-gutter: stable;
642
+ border: 1px solid var(--line);
643
+ border-radius: 7px;
644
+ background:
645
+ linear-gradient(#101214 1px, transparent 1px),
646
+ linear-gradient(90deg, #101214 1px, transparent 1px),
647
+ #090a0b;
648
+ background-size: 28px 28px;
649
+ }
650
+ .running-graph-canvas {
651
+ position: relative;
652
+ min-width: 100%;
653
+ min-height: 100%;
654
+ }
655
+ .running-graph-svg {
656
+ position: absolute;
657
+ inset: 0;
658
+ display: block;
659
+ pointer-events: none;
660
+ }
661
+ .running-edge {
662
+ fill: none;
663
+ stroke: #37404a;
664
+ stroke-width: 2;
665
+ stroke-linecap: round;
666
+ opacity: .74;
667
+ }
668
+ .running-edge.good {
669
+ stroke: color-mix(in srgb, var(--good) 48%, #39414a);
670
+ }
671
+ .running-node {
672
+ position: absolute;
673
+ min-width: 0;
674
+ display: block;
675
+ border: 1px solid var(--line);
676
+ border-radius: 8px;
677
+ background: #0d0f10;
678
+ color: var(--text);
679
+ padding: 11px 12px;
680
+ text-align: left;
681
+ box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
682
+ }
683
+ button.running-node {
684
+ cursor: pointer;
685
+ }
686
+ button.running-node:hover,
687
+ button.running-node:focus-visible {
688
+ border-color: var(--line-strong);
689
+ background: #121518;
690
+ }
691
+ button.running-node:focus-visible {
692
+ outline: 2px solid var(--focus);
693
+ outline-offset: 2px;
694
+ }
695
+ .running-node.source,
696
+ .running-node.lane,
697
+ .running-node.agent {
698
+ border-color: color-mix(in srgb, var(--node-color, var(--line-strong)) 38%, var(--line));
699
+ }
700
+ .running-node.task.good {
701
+ border-color: color-mix(in srgb, var(--good) 36%, var(--line));
702
+ }
703
+ .running-node-inner {
704
+ min-width: 0;
705
+ height: 100%;
706
+ display: grid;
707
+ align-content: start;
708
+ gap: 5px;
709
+ }
710
+ .running-node-inner span {
711
+ color: var(--muted);
712
+ font-size: 10px;
713
+ font-weight: 700;
714
+ text-transform: uppercase;
715
+ }
716
+ .running-node-inner b,
717
+ .running-node-inner small,
718
+ .running-node-inner em {
719
+ min-width: 0;
720
+ overflow-wrap: anywhere;
721
+ white-space: normal;
722
+ }
723
+ .running-node-inner b {
724
+ color: var(--text);
725
+ font-size: 14px;
726
+ line-height: 1.25;
727
+ }
728
+ .running-node-inner small,
729
+ .running-node-inner em {
730
+ color: var(--muted);
731
+ font-size: 11px;
732
+ font-style: normal;
733
+ line-height: 1.3;
734
+ }
567
735
  .goal-card {
568
736
  min-width: 0;
569
737
  display: grid;