@mtharrison/loupe 1.1.1 → 1.3.0
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.md +155 -41
- package/assets/screenshot1.png +0 -0
- package/assets/screenshot2.png +0 -0
- package/dist/client/app.css +365 -263
- package/dist/client/app.js +815 -658
- package/dist/index.d.ts +7 -8
- package/dist/index.js +392 -49
- package/dist/server.d.ts +1 -0
- package/dist/server.js +42 -11
- package/dist/session-nav.d.ts +10 -0
- package/dist/session-nav.js +91 -0
- package/dist/store.d.ts +6 -7
- package/dist/store.js +203 -45
- package/dist/types.d.ts +62 -9
- package/dist/utils.d.ts +2 -1
- package/dist/utils.js +14 -0
- package/examples/nested-tool-call.js +234 -0
- package/examples/openai-multiturn-tools.js +399 -0
- package/package.json +3 -1
package/dist/client/app.css
CHANGED
|
@@ -29,25 +29,32 @@
|
|
|
29
29
|
}
|
|
30
30
|
:root[data-theme=dark] {
|
|
31
31
|
color-scheme: dark;
|
|
32
|
-
--background: #
|
|
33
|
-
--background-strong: #
|
|
34
|
-
--panel: rgba(
|
|
35
|
-
--panel-strong: rgba(
|
|
36
|
-
--panel-soft: rgba(
|
|
37
|
-
--foreground: #
|
|
38
|
-
--muted-foreground: #
|
|
39
|
-
--line: rgba(
|
|
40
|
-
--line-strong: rgba(
|
|
41
|
-
--primary: #
|
|
42
|
-
--primary-strong: #
|
|
43
|
-
--secondary: rgba(
|
|
44
|
-
--warning: #
|
|
45
|
-
--danger: #
|
|
46
|
-
--success: #
|
|
47
|
-
--shadow: 0
|
|
32
|
+
--background: #111b29;
|
|
33
|
+
--background-strong: #09111c;
|
|
34
|
+
--panel: rgba(22, 32, 47, 0.96);
|
|
35
|
+
--panel-strong: rgba(28, 40, 59, 0.98);
|
|
36
|
+
--panel-soft: rgba(115, 170, 255, 0.16);
|
|
37
|
+
--foreground: #f3f7ff;
|
|
38
|
+
--muted-foreground: #b6c5d9;
|
|
39
|
+
--line: rgba(140, 164, 197, 0.24);
|
|
40
|
+
--line-strong: rgba(145, 193, 255, 0.52);
|
|
41
|
+
--primary: #9dc8ff;
|
|
42
|
+
--primary-strong: #f4f8ff;
|
|
43
|
+
--secondary: rgba(120, 155, 212, 0.18);
|
|
44
|
+
--warning: #f2bf67;
|
|
45
|
+
--danger: #f39bac;
|
|
46
|
+
--success: #7ad1aa;
|
|
47
|
+
--shadow: 0 30px 90px rgba(1, 8, 20, 0.56);
|
|
48
48
|
}
|
|
49
49
|
* {
|
|
50
50
|
box-sizing: border-box;
|
|
51
|
+
scrollbar-width: none;
|
|
52
|
+
-ms-overflow-style: none;
|
|
53
|
+
}
|
|
54
|
+
*::-webkit-scrollbar {
|
|
55
|
+
width: 0;
|
|
56
|
+
height: 0;
|
|
57
|
+
background: transparent;
|
|
51
58
|
}
|
|
52
59
|
html,
|
|
53
60
|
body,
|
|
@@ -84,17 +91,17 @@ body {
|
|
|
84
91
|
background:
|
|
85
92
|
radial-gradient(
|
|
86
93
|
circle at top left,
|
|
87
|
-
rgba(
|
|
88
|
-
transparent
|
|
94
|
+
rgba(108, 158, 235, 0.2),
|
|
95
|
+
transparent 34rem),
|
|
89
96
|
radial-gradient(
|
|
90
97
|
circle at top right,
|
|
91
|
-
rgba(
|
|
92
|
-
transparent
|
|
98
|
+
rgba(138, 164, 207, 0.12),
|
|
99
|
+
transparent 28rem),
|
|
93
100
|
linear-gradient(
|
|
94
101
|
180deg,
|
|
95
|
-
#
|
|
96
|
-
#
|
|
97
|
-
#
|
|
102
|
+
#1a2638 0%,
|
|
103
|
+
#101a28 45%,
|
|
104
|
+
#09111c 100%);
|
|
98
105
|
}
|
|
99
106
|
button,
|
|
100
107
|
input,
|
|
@@ -408,13 +415,6 @@ pre {
|
|
|
408
415
|
.workspace-grid.is-sidebar-collapsed .session-sidebar-card {
|
|
409
416
|
display: none;
|
|
410
417
|
}
|
|
411
|
-
.workspace-grid::-webkit-scrollbar {
|
|
412
|
-
width: 10px;
|
|
413
|
-
}
|
|
414
|
-
.workspace-grid::-webkit-scrollbar-thumb {
|
|
415
|
-
background: rgba(148, 163, 184, 0.22);
|
|
416
|
-
border-radius: 999px;
|
|
417
|
-
}
|
|
418
418
|
.ui-card {
|
|
419
419
|
display: flex;
|
|
420
420
|
flex-direction: column;
|
|
@@ -447,184 +447,60 @@ pre {
|
|
|
447
447
|
min-height: 0;
|
|
448
448
|
flex: 1;
|
|
449
449
|
flex-direction: column;
|
|
450
|
+
padding: 0.8rem;
|
|
450
451
|
}
|
|
451
|
-
.session-
|
|
452
|
+
.session-tree-section {
|
|
452
453
|
display: flex;
|
|
453
454
|
flex-direction: column;
|
|
454
|
-
gap: 0.
|
|
455
|
-
|
|
455
|
+
gap: 0.7rem;
|
|
456
|
+
min-height: 0;
|
|
457
|
+
flex: 1;
|
|
456
458
|
padding: 0.72rem 0.78rem;
|
|
457
459
|
border: 1px solid var(--line);
|
|
458
460
|
border-radius: 16px;
|
|
459
461
|
background: rgba(250, 252, 255, 0.9);
|
|
460
462
|
box-shadow: 0 8px 22px rgba(32, 50, 76, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.7);
|
|
461
463
|
}
|
|
462
|
-
.session-
|
|
464
|
+
.session-tree-header {
|
|
463
465
|
display: flex;
|
|
464
466
|
align-items: center;
|
|
465
467
|
justify-content: space-between;
|
|
466
468
|
gap: 0.75rem;
|
|
467
469
|
}
|
|
468
|
-
.session-
|
|
470
|
+
.session-tree-title-row {
|
|
469
471
|
display: flex;
|
|
470
472
|
align-items: center;
|
|
471
473
|
gap: 0.5rem;
|
|
472
474
|
min-width: 0;
|
|
473
475
|
}
|
|
474
|
-
.session-
|
|
476
|
+
.session-tree-title {
|
|
475
477
|
font-size: 0.82rem;
|
|
476
478
|
font-weight: 700;
|
|
477
479
|
letter-spacing: 0.08em;
|
|
478
480
|
text-transform: uppercase;
|
|
479
481
|
color: var(--muted-foreground);
|
|
480
482
|
}
|
|
481
|
-
.session-
|
|
483
|
+
.session-tree-filter-badge {
|
|
482
484
|
min-height: 1.3rem;
|
|
483
485
|
padding: 0.12rem 0.44rem;
|
|
484
486
|
font-size: 0.66rem;
|
|
485
487
|
}
|
|
486
|
-
.session-
|
|
488
|
+
.session-tree-meta {
|
|
487
489
|
color: var(--muted-foreground);
|
|
488
490
|
font-size: 0.84rem;
|
|
489
491
|
}
|
|
490
|
-
.session-
|
|
491
|
-
|
|
492
|
-
flex
|
|
493
|
-
gap: 0.4rem;
|
|
494
|
-
max-height: min(16rem, 34vh);
|
|
492
|
+
.session-tree-scroll {
|
|
493
|
+
min-height: 0;
|
|
494
|
+
flex: 1;
|
|
495
495
|
overflow: auto;
|
|
496
496
|
padding-right: 0.12rem;
|
|
497
497
|
scrollbar-gutter: stable;
|
|
498
498
|
}
|
|
499
|
-
.session-nav-card {
|
|
500
|
-
display: flex;
|
|
501
|
-
width: 100%;
|
|
502
|
-
min-width: 0;
|
|
503
|
-
flex-direction: column;
|
|
504
|
-
gap: 0.28rem;
|
|
505
|
-
padding: 0.62rem 0.7rem;
|
|
506
|
-
border: 1px solid rgba(40, 93, 168, 0.08);
|
|
507
|
-
border-radius: 14px;
|
|
508
|
-
background: rgba(255, 255, 255, 0.92);
|
|
509
|
-
color: inherit;
|
|
510
|
-
text-align: left;
|
|
511
|
-
box-shadow: 0 6px 16px rgba(32, 50, 76, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.72);
|
|
512
|
-
transition:
|
|
513
|
-
border-color 160ms ease,
|
|
514
|
-
background 160ms ease,
|
|
515
|
-
box-shadow 160ms ease,
|
|
516
|
-
transform 160ms ease;
|
|
517
|
-
}
|
|
518
|
-
.session-nav-card:hover {
|
|
519
|
-
border-color: rgba(40, 93, 168, 0.16);
|
|
520
|
-
background: rgba(247, 251, 255, 0.96);
|
|
521
|
-
box-shadow: 0 10px 24px rgba(32, 50, 76, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
|
|
522
|
-
}
|
|
523
|
-
.session-nav-card.is-active {
|
|
524
|
-
border-color: rgba(40, 93, 168, 0.26);
|
|
525
|
-
background:
|
|
526
|
-
linear-gradient(
|
|
527
|
-
180deg,
|
|
528
|
-
rgba(241, 247, 255, 0.98),
|
|
529
|
-
rgba(233, 242, 255, 0.94));
|
|
530
|
-
box-shadow: inset 3px 0 0 rgba(40, 93, 168, 0.84), 0 12px 28px rgba(32, 50, 76, 0.12);
|
|
531
|
-
}
|
|
532
|
-
.session-nav-card-header,
|
|
533
|
-
.session-nav-card-footer {
|
|
534
|
-
display: flex;
|
|
535
|
-
align-items: center;
|
|
536
|
-
justify-content: space-between;
|
|
537
|
-
gap: 0.65rem;
|
|
538
|
-
}
|
|
539
|
-
.session-nav-card-title {
|
|
540
|
-
min-width: 0;
|
|
541
|
-
font-size: 0.9rem;
|
|
542
|
-
font-weight: 650;
|
|
543
|
-
letter-spacing: -0.02em;
|
|
544
|
-
overflow: hidden;
|
|
545
|
-
text-overflow: ellipsis;
|
|
546
|
-
white-space: nowrap;
|
|
547
|
-
}
|
|
548
|
-
.session-nav-card-time {
|
|
549
|
-
flex: 0 0 auto;
|
|
550
|
-
color: var(--muted-foreground);
|
|
551
|
-
font-size: 0.74rem;
|
|
552
|
-
font-weight: 600;
|
|
553
|
-
white-space: nowrap;
|
|
554
|
-
}
|
|
555
|
-
.session-nav-card-meta {
|
|
556
|
-
color: var(--muted-foreground);
|
|
557
|
-
font-size: 0.75rem;
|
|
558
|
-
line-height: 1.4;
|
|
559
|
-
}
|
|
560
|
-
.session-nav-card-id {
|
|
561
|
-
min-width: 0;
|
|
562
|
-
color: var(--muted-foreground);
|
|
563
|
-
font-family:
|
|
564
|
-
"SFMono-Regular",
|
|
565
|
-
ui-monospace,
|
|
566
|
-
"Cascadia Code",
|
|
567
|
-
"Source Code Pro",
|
|
568
|
-
Menlo,
|
|
569
|
-
monospace;
|
|
570
|
-
font-size: 0.71rem;
|
|
571
|
-
}
|
|
572
|
-
.session-sidebar-shell .hierarchy-timeline-panel {
|
|
573
|
-
margin: 0;
|
|
574
|
-
flex: 1;
|
|
575
|
-
min-height: 0;
|
|
576
|
-
border: 0;
|
|
577
|
-
border-radius: 0;
|
|
578
|
-
background: transparent;
|
|
579
|
-
box-shadow: none;
|
|
580
|
-
}
|
|
581
|
-
.session-sidebar-shell .hierarchy-timeline-list {
|
|
582
|
-
max-height: none;
|
|
583
|
-
flex: 1;
|
|
584
|
-
}
|
|
585
|
-
.session-sidebar-shell .hierarchy-timeline-axis,
|
|
586
|
-
.session-sidebar-shell .hierarchy-timeline-row {
|
|
587
|
-
grid-template-columns: 4.1rem minmax(0, 1fr) minmax(6.5rem, 8rem);
|
|
588
|
-
gap: 0.45rem;
|
|
589
|
-
}
|
|
590
|
-
.session-sidebar-shell .hierarchy-timeline-row-labels {
|
|
591
|
-
padding: 0.72rem 0.5rem 0.72rem 1.2rem;
|
|
592
|
-
}
|
|
593
|
-
.session-sidebar-shell .hierarchy-timeline-row-bars {
|
|
594
|
-
grid-template-columns: minmax(5.75rem, 1fr) auto;
|
|
595
|
-
column-gap: 0.35rem;
|
|
596
|
-
padding-top: 0.72rem;
|
|
597
|
-
padding-bottom: 0.72rem;
|
|
598
|
-
padding-left: 0.4rem;
|
|
599
|
-
padding-right: 1rem;
|
|
600
|
-
}
|
|
601
|
-
.session-sidebar-shell .hierarchy-timeline-axis-label {
|
|
602
|
-
font-size: 0.64rem;
|
|
603
|
-
}
|
|
604
|
-
.session-sidebar-shell .hierarchy-timeline-row-title {
|
|
605
|
-
flex-wrap: nowrap;
|
|
606
|
-
}
|
|
607
|
-
.session-sidebar-shell .hierarchy-timeline-row-title-text,
|
|
608
|
-
.session-sidebar-shell .hierarchy-timeline-row-meta {
|
|
609
|
-
overflow: hidden;
|
|
610
|
-
text-overflow: ellipsis;
|
|
611
|
-
white-space: nowrap;
|
|
612
|
-
}
|
|
613
|
-
.session-sidebar-shell .hierarchy-timeline-row-title-text {
|
|
614
|
-
font-size: 0.85rem;
|
|
615
|
-
}
|
|
616
|
-
.session-sidebar-shell .hierarchy-timeline-row-meta {
|
|
617
|
-
font-size: 0.72rem;
|
|
618
|
-
}
|
|
619
|
-
.session-sidebar-shell .hierarchy-timeline-panel {
|
|
620
|
-
gap: 0.65rem;
|
|
621
|
-
padding: 0.8rem 0.82rem 0.86rem;
|
|
622
|
-
}
|
|
623
499
|
.session-sidebar-empty {
|
|
624
500
|
display: flex;
|
|
625
501
|
flex: 1;
|
|
626
502
|
min-height: 0;
|
|
627
|
-
padding: 0.
|
|
503
|
+
padding: 0.2rem;
|
|
628
504
|
}
|
|
629
505
|
.session-sidebar-empty-state {
|
|
630
506
|
display: flex;
|
|
@@ -688,7 +564,7 @@ pre {
|
|
|
688
564
|
.sheet-close:focus-visible,
|
|
689
565
|
.nav-item:focus-visible,
|
|
690
566
|
.nav-switch-button:focus-visible,
|
|
691
|
-
.session-
|
|
567
|
+
.session-tree-select:focus-visible,
|
|
692
568
|
.theme-switch-button:focus-visible,
|
|
693
569
|
.expandable-toggle:focus-visible,
|
|
694
570
|
.tree-node-toggle:focus-visible,
|
|
@@ -1820,7 +1696,6 @@ pre {
|
|
|
1820
1696
|
overflow-x: hidden;
|
|
1821
1697
|
overflow-y: scroll;
|
|
1822
1698
|
padding-right: 0.2rem;
|
|
1823
|
-
scrollbar-gutter: stable;
|
|
1824
1699
|
}
|
|
1825
1700
|
.trace-detail-pane {
|
|
1826
1701
|
display: flex;
|
|
@@ -1852,14 +1727,15 @@ pre {
|
|
|
1852
1727
|
flex-direction: column;
|
|
1853
1728
|
gap: 0.45rem;
|
|
1854
1729
|
width: 100%;
|
|
1855
|
-
padding-left: calc(var(--depth, 0) * 0.75rem);
|
|
1856
1730
|
content-visibility: auto;
|
|
1857
1731
|
contain-intrinsic-size: 4rem;
|
|
1858
1732
|
}
|
|
1859
1733
|
.tree-node-card {
|
|
1860
|
-
|
|
1734
|
+
--tree-timeline-width: minmax(8.75rem, 10.5rem);
|
|
1735
|
+
display: grid;
|
|
1736
|
+
grid-template-columns: 1.8rem minmax(0, 1fr);
|
|
1861
1737
|
align-items: center;
|
|
1862
|
-
gap: 0.7rem;
|
|
1738
|
+
column-gap: 0.7rem;
|
|
1863
1739
|
width: 100%;
|
|
1864
1740
|
padding: 0.28rem;
|
|
1865
1741
|
border-radius: 12px;
|
|
@@ -1877,6 +1753,14 @@ pre {
|
|
|
1877
1753
|
0 0 0 1px rgba(40, 93, 168, 0.1),
|
|
1878
1754
|
inset 0 1px 0 rgba(255, 255, 255, 0.72);
|
|
1879
1755
|
}
|
|
1756
|
+
.tree-node-card.is-in-path:not(.is-active) {
|
|
1757
|
+
border-color: rgba(40, 93, 168, 0.18);
|
|
1758
|
+
background: rgba(247, 251, 255, 0.96);
|
|
1759
|
+
box-shadow:
|
|
1760
|
+
inset 2px 0 0 rgba(40, 93, 168, 0.42),
|
|
1761
|
+
0 8px 18px rgba(32, 50, 76, 0.06),
|
|
1762
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.72);
|
|
1763
|
+
}
|
|
1880
1764
|
.tree-node-card.is-trace {
|
|
1881
1765
|
background: rgba(246, 249, 253, 0.88);
|
|
1882
1766
|
box-shadow: 0 4px 12px rgba(32, 50, 76, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.7);
|
|
@@ -1921,24 +1805,45 @@ pre {
|
|
|
1921
1805
|
cursor: default;
|
|
1922
1806
|
}
|
|
1923
1807
|
.tree-node-select {
|
|
1924
|
-
display:
|
|
1925
|
-
|
|
1808
|
+
display: grid;
|
|
1809
|
+
grid-template-columns: minmax(0, 1fr) var(--tree-timeline-width);
|
|
1926
1810
|
min-width: 0;
|
|
1811
|
+
align-items: center;
|
|
1812
|
+
gap: 0.85rem;
|
|
1927
1813
|
text-align: left;
|
|
1928
1814
|
font: inherit;
|
|
1929
1815
|
padding: 0.48rem 0;
|
|
1930
1816
|
}
|
|
1931
|
-
.tree-
|
|
1817
|
+
.tree-structure-select {
|
|
1932
1818
|
align-items: center;
|
|
1933
|
-
|
|
1934
|
-
|
|
1819
|
+
}
|
|
1820
|
+
.tree-trace-select {
|
|
1935
1821
|
padding: 0.48rem 0.1rem 0.48rem 0;
|
|
1936
1822
|
}
|
|
1823
|
+
.tree-session-card {
|
|
1824
|
+
align-items: flex-start;
|
|
1825
|
+
}
|
|
1826
|
+
.session-tree-select {
|
|
1827
|
+
padding-right: 0.1rem;
|
|
1828
|
+
}
|
|
1937
1829
|
.tree-node-copy {
|
|
1938
1830
|
display: flex;
|
|
1939
1831
|
min-width: 0;
|
|
1940
1832
|
flex-direction: column;
|
|
1941
1833
|
gap: 0.16rem;
|
|
1834
|
+
padding-left: calc(var(--depth, 0) * 0.9rem);
|
|
1835
|
+
}
|
|
1836
|
+
.session-tree-copy {
|
|
1837
|
+
gap: 0.32rem;
|
|
1838
|
+
}
|
|
1839
|
+
.tree-node-heading {
|
|
1840
|
+
display: flex;
|
|
1841
|
+
align-items: center;
|
|
1842
|
+
gap: 0.45rem;
|
|
1843
|
+
min-width: 0;
|
|
1844
|
+
}
|
|
1845
|
+
.tree-node-inline-badge {
|
|
1846
|
+
flex: 0 0 auto;
|
|
1942
1847
|
}
|
|
1943
1848
|
.tree-trace-wrap {
|
|
1944
1849
|
contain-intrinsic-size: 5.5rem;
|
|
@@ -1952,6 +1857,135 @@ pre {
|
|
|
1952
1857
|
color: var(--muted-foreground);
|
|
1953
1858
|
font-size: 0.8rem;
|
|
1954
1859
|
}
|
|
1860
|
+
.session-tree-card-header,
|
|
1861
|
+
.session-tree-card-footer {
|
|
1862
|
+
display: flex;
|
|
1863
|
+
align-items: center;
|
|
1864
|
+
justify-content: space-between;
|
|
1865
|
+
gap: 0.65rem;
|
|
1866
|
+
}
|
|
1867
|
+
.session-tree-card-title {
|
|
1868
|
+
min-width: 0;
|
|
1869
|
+
font-size: 0.92rem;
|
|
1870
|
+
font-weight: 650;
|
|
1871
|
+
letter-spacing: -0.02em;
|
|
1872
|
+
overflow: hidden;
|
|
1873
|
+
text-overflow: ellipsis;
|
|
1874
|
+
white-space: nowrap;
|
|
1875
|
+
}
|
|
1876
|
+
.session-tree-card-time {
|
|
1877
|
+
flex: 0 0 auto;
|
|
1878
|
+
color: var(--muted-foreground);
|
|
1879
|
+
font-size: 0.74rem;
|
|
1880
|
+
font-weight: 600;
|
|
1881
|
+
white-space: nowrap;
|
|
1882
|
+
}
|
|
1883
|
+
.session-tree-card-id {
|
|
1884
|
+
min-width: 0;
|
|
1885
|
+
color: var(--muted-foreground);
|
|
1886
|
+
font-family:
|
|
1887
|
+
"SFMono-Regular",
|
|
1888
|
+
ui-monospace,
|
|
1889
|
+
"Cascadia Code",
|
|
1890
|
+
"Source Code Pro",
|
|
1891
|
+
Menlo,
|
|
1892
|
+
monospace;
|
|
1893
|
+
font-size: 0.71rem;
|
|
1894
|
+
}
|
|
1895
|
+
.session-tree-card-badges {
|
|
1896
|
+
display: inline-flex;
|
|
1897
|
+
align-items: center;
|
|
1898
|
+
justify-content: flex-end;
|
|
1899
|
+
gap: 0.35rem;
|
|
1900
|
+
flex-wrap: wrap;
|
|
1901
|
+
}
|
|
1902
|
+
.session-tree-timeline-shell {
|
|
1903
|
+
padding: 0 0.1rem 0.2rem 2.35rem;
|
|
1904
|
+
}
|
|
1905
|
+
.session-tree-timeline-list {
|
|
1906
|
+
display: flex;
|
|
1907
|
+
flex-direction: column;
|
|
1908
|
+
gap: 0.45rem;
|
|
1909
|
+
}
|
|
1910
|
+
.session-tree-timeline-list .hierarchy-timeline-row {
|
|
1911
|
+
grid-template-columns: 4rem minmax(0, 1fr) minmax(6rem, 7.25rem);
|
|
1912
|
+
gap: 0.4rem;
|
|
1913
|
+
}
|
|
1914
|
+
.session-tree-timeline-list .hierarchy-timeline-row-labels {
|
|
1915
|
+
padding: 0.72rem 0.5rem 0.72rem 1.05rem;
|
|
1916
|
+
}
|
|
1917
|
+
.session-tree-timeline-list .hierarchy-timeline-row-bars {
|
|
1918
|
+
grid-template-columns: minmax(4.8rem, 1fr) auto;
|
|
1919
|
+
column-gap: 0.35rem;
|
|
1920
|
+
padding: 0.72rem 0.8rem 0.72rem 0.2rem;
|
|
1921
|
+
}
|
|
1922
|
+
.session-tree-timeline-list .hierarchy-timeline-row-title {
|
|
1923
|
+
flex-wrap: nowrap;
|
|
1924
|
+
}
|
|
1925
|
+
.session-tree-timeline-list .hierarchy-timeline-row-title-text,
|
|
1926
|
+
.session-tree-timeline-list .hierarchy-timeline-row-meta {
|
|
1927
|
+
overflow: hidden;
|
|
1928
|
+
text-overflow: ellipsis;
|
|
1929
|
+
white-space: nowrap;
|
|
1930
|
+
}
|
|
1931
|
+
.session-tree-timeline-list .hierarchy-timeline-row-title-text {
|
|
1932
|
+
font-size: 0.84rem;
|
|
1933
|
+
}
|
|
1934
|
+
.session-tree-timeline-list .hierarchy-timeline-row-meta,
|
|
1935
|
+
.session-tree-timeline-list .hierarchy-timeline-row-time,
|
|
1936
|
+
.session-tree-timeline-list .hierarchy-timeline-row-duration {
|
|
1937
|
+
font-size: 0.72rem;
|
|
1938
|
+
}
|
|
1939
|
+
.session-tree-timeline {
|
|
1940
|
+
display: inline-flex;
|
|
1941
|
+
min-width: 0;
|
|
1942
|
+
flex-direction: column;
|
|
1943
|
+
gap: 0.28rem;
|
|
1944
|
+
align-items: stretch;
|
|
1945
|
+
}
|
|
1946
|
+
.session-tree-timeline-meta {
|
|
1947
|
+
display: flex;
|
|
1948
|
+
align-items: center;
|
|
1949
|
+
justify-content: space-between;
|
|
1950
|
+
gap: 0.45rem;
|
|
1951
|
+
color: var(--muted-foreground);
|
|
1952
|
+
font-size: 0.68rem;
|
|
1953
|
+
font-weight: 600;
|
|
1954
|
+
}
|
|
1955
|
+
.session-tree-timeline-start,
|
|
1956
|
+
.session-tree-timeline-duration {
|
|
1957
|
+
white-space: nowrap;
|
|
1958
|
+
}
|
|
1959
|
+
.session-tree-timeline-track {
|
|
1960
|
+
position: relative;
|
|
1961
|
+
display: block;
|
|
1962
|
+
width: 100%;
|
|
1963
|
+
height: 0.9rem;
|
|
1964
|
+
}
|
|
1965
|
+
.session-tree-timeline-track::before {
|
|
1966
|
+
content: "";
|
|
1967
|
+
position: absolute;
|
|
1968
|
+
inset: 50% 0 auto;
|
|
1969
|
+
height: 2px;
|
|
1970
|
+
border-radius: 999px;
|
|
1971
|
+
background: rgba(84, 100, 125, 0.18);
|
|
1972
|
+
transform: translateY(-50%);
|
|
1973
|
+
}
|
|
1974
|
+
.session-tree-timeline-bar {
|
|
1975
|
+
position: absolute;
|
|
1976
|
+
left: calc(var(--session-tree-offset, 0) * 100%);
|
|
1977
|
+
top: 50%;
|
|
1978
|
+
width: max(0.5rem, calc(var(--session-tree-span, 0.08) * 100%));
|
|
1979
|
+
height: 0.45rem;
|
|
1980
|
+
border-radius: 999px;
|
|
1981
|
+
border: 1px solid rgba(40, 93, 168, 0.28);
|
|
1982
|
+
background:
|
|
1983
|
+
linear-gradient(
|
|
1984
|
+
90deg,
|
|
1985
|
+
rgba(92, 121, 171, 0.22),
|
|
1986
|
+
rgba(40, 93, 168, 0.52));
|
|
1987
|
+
transform: translateY(-50%);
|
|
1988
|
+
}
|
|
1955
1989
|
.tree-node-children {
|
|
1956
1990
|
display: flex;
|
|
1957
1991
|
flex-direction: column;
|
|
@@ -3041,7 +3075,7 @@ pre {
|
|
|
3041
3075
|
line-height: 1.6;
|
|
3042
3076
|
}
|
|
3043
3077
|
:root[data-theme=dark] .background-glow {
|
|
3044
|
-
opacity: 0.
|
|
3078
|
+
opacity: 0.08;
|
|
3045
3079
|
}
|
|
3046
3080
|
:root[data-theme=dark] .glow-teal {
|
|
3047
3081
|
background: rgba(134, 184, 255, 0.14);
|
|
@@ -3058,17 +3092,17 @@ pre {
|
|
|
3058
3092
|
transparent 1px);
|
|
3059
3093
|
}
|
|
3060
3094
|
:root[data-theme=dark] .board-shell {
|
|
3061
|
-
border-color: rgba(
|
|
3095
|
+
border-color: rgba(140, 164, 197, 0.22);
|
|
3062
3096
|
background:
|
|
3063
3097
|
linear-gradient(
|
|
3064
3098
|
180deg,
|
|
3065
|
-
rgba(
|
|
3066
|
-
rgba(
|
|
3099
|
+
rgba(21, 31, 46, 0.98),
|
|
3100
|
+
rgba(12, 19, 31, 0.98)),
|
|
3067
3101
|
linear-gradient(
|
|
3068
3102
|
135deg,
|
|
3069
|
-
rgba(
|
|
3070
|
-
transparent);
|
|
3071
|
-
box-shadow: 0
|
|
3103
|
+
rgba(157, 200, 255, 0.08),
|
|
3104
|
+
transparent 60%);
|
|
3105
|
+
box-shadow: 0 32px 96px rgba(1, 7, 18, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
|
3072
3106
|
}
|
|
3073
3107
|
:root[data-theme=dark] .brand-logo {
|
|
3074
3108
|
border-color: rgba(128, 153, 189, 0.16);
|
|
@@ -3087,20 +3121,63 @@ pre {
|
|
|
3087
3121
|
:root[data-theme=dark] .brand-wordmark {
|
|
3088
3122
|
color: #f3f7ff;
|
|
3089
3123
|
}
|
|
3124
|
+
:root[data-theme=dark] .brand-subtitle,
|
|
3125
|
+
:root[data-theme=dark] .ui-card-description,
|
|
3126
|
+
:root[data-theme=dark] .filter-label,
|
|
3127
|
+
:root[data-theme=dark] .session-tree-meta,
|
|
3128
|
+
:root[data-theme=dark] .session-tree-card-time,
|
|
3129
|
+
:root[data-theme=dark] .session-tree-card-id,
|
|
3130
|
+
:root[data-theme=dark] .trace-group-meta,
|
|
3131
|
+
:root[data-theme=dark] .nav-item-meta,
|
|
3132
|
+
:root[data-theme=dark] .trace-nav-meta-row,
|
|
3133
|
+
:root[data-theme=dark] .hierarchy-timeline-hint,
|
|
3134
|
+
:root[data-theme=dark] .hierarchy-timeline-row-time,
|
|
3135
|
+
:root[data-theme=dark] .hierarchy-timeline-row-meta,
|
|
3136
|
+
:root[data-theme=dark] .hierarchy-timeline-row-duration,
|
|
3137
|
+
:root[data-theme=dark] .hierarchy-timeline-meta,
|
|
3138
|
+
:root[data-theme=dark] .hierarchy-timeline-title,
|
|
3139
|
+
:root[data-theme=dark] .trace-detail-subtitle,
|
|
3140
|
+
:root[data-theme=dark] .trace-detail-json-toggle,
|
|
3141
|
+
:root[data-theme=dark] .message-card-hint,
|
|
3142
|
+
:root[data-theme=dark] .trace-insight-item-source,
|
|
3143
|
+
:root[data-theme=dark] .tool-call-label,
|
|
3144
|
+
:root[data-theme=dark] .metadata-grid dt,
|
|
3145
|
+
:root[data-theme=dark] .metadata-secondary,
|
|
3146
|
+
:root[data-theme=dark] .kv-grid dt,
|
|
3147
|
+
:root[data-theme=dark] .timing-legend,
|
|
3148
|
+
:root[data-theme=dark] .muted-copy {
|
|
3149
|
+
color: rgba(205, 217, 234, 0.92);
|
|
3150
|
+
}
|
|
3151
|
+
:root[data-theme=dark] .session-tree-card-title,
|
|
3152
|
+
:root[data-theme=dark] .trace-group-title,
|
|
3153
|
+
:root[data-theme=dark] .nav-item-title,
|
|
3154
|
+
:root[data-theme=dark] .trace-row-title,
|
|
3155
|
+
:root[data-theme=dark] .trace-detail-title-row h2,
|
|
3156
|
+
:root[data-theme=dark] .trace-detail-heading p strong,
|
|
3157
|
+
:root[data-theme=dark] .tree-node-label {
|
|
3158
|
+
color: rgba(244, 248, 255, 0.98);
|
|
3159
|
+
}
|
|
3090
3160
|
:root[data-theme=dark] .inspector-status,
|
|
3091
3161
|
:root[data-theme=dark] .toolbar-card,
|
|
3092
3162
|
:root[data-theme=dark] .ui-card,
|
|
3093
3163
|
:root[data-theme=dark] .inspector-card,
|
|
3094
3164
|
:root[data-theme=dark] .detail-section {
|
|
3095
|
-
background:
|
|
3165
|
+
background: var(--panel);
|
|
3096
3166
|
}
|
|
3097
3167
|
:root[data-theme=dark] .inspector-status {
|
|
3098
|
-
background: rgba(
|
|
3168
|
+
background: rgba(15, 23, 35, 0.96);
|
|
3099
3169
|
}
|
|
3100
3170
|
:root[data-theme=dark] .inspector-chip {
|
|
3101
3171
|
background: rgba(134, 184, 255, 0.12);
|
|
3102
3172
|
color: var(--primary-strong);
|
|
3103
3173
|
}
|
|
3174
|
+
:root[data-theme=dark] .inspector-live-status {
|
|
3175
|
+
color: rgba(216, 228, 243, 0.94);
|
|
3176
|
+
}
|
|
3177
|
+
:root[data-theme=dark] .inspector-live-status.is-live {
|
|
3178
|
+
background: rgba(105, 197, 156, 0.14);
|
|
3179
|
+
color: #99e0bf;
|
|
3180
|
+
}
|
|
3104
3181
|
:root[data-theme=dark] .ui-button-outline,
|
|
3105
3182
|
:root[data-theme=dark] .filter-input-shell,
|
|
3106
3183
|
:root[data-theme=dark] .ui-select,
|
|
@@ -3109,8 +3186,9 @@ pre {
|
|
|
3109
3186
|
:root[data-theme=dark] .metadata-action-button,
|
|
3110
3187
|
:root[data-theme=dark] .sheet-close {
|
|
3111
3188
|
border-color: var(--line);
|
|
3112
|
-
background:
|
|
3189
|
+
background: var(--panel-strong);
|
|
3113
3190
|
color: var(--foreground);
|
|
3191
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
|
3114
3192
|
}
|
|
3115
3193
|
:root[data-theme=dark] .ui-input::placeholder {
|
|
3116
3194
|
color: rgba(149, 168, 193, 0.82);
|
|
@@ -3119,7 +3197,7 @@ pre {
|
|
|
3119
3197
|
:root[data-theme=dark] .sheet-close:focus-visible,
|
|
3120
3198
|
:root[data-theme=dark] .nav-item:focus-visible,
|
|
3121
3199
|
:root[data-theme=dark] .nav-switch-button:focus-visible,
|
|
3122
|
-
:root[data-theme=dark] .session-
|
|
3200
|
+
:root[data-theme=dark] .session-tree-select:focus-visible,
|
|
3123
3201
|
:root[data-theme=dark] .theme-switch-button:focus-visible,
|
|
3124
3202
|
:root[data-theme=dark] .trace-detail-breadcrumb-segment:focus-visible,
|
|
3125
3203
|
:root[data-theme=dark] .ui-badge-button:focus-visible,
|
|
@@ -3151,23 +3229,10 @@ pre {
|
|
|
3151
3229
|
background: rgba(134, 184, 255, 0.14);
|
|
3152
3230
|
color: var(--primary-strong);
|
|
3153
3231
|
}
|
|
3154
|
-
:root[data-theme=dark] .session-
|
|
3155
|
-
border-color: rgba(
|
|
3156
|
-
background: rgba(
|
|
3157
|
-
box-shadow: 0
|
|
3158
|
-
}
|
|
3159
|
-
:root[data-theme=dark] .session-nav-card {
|
|
3160
|
-
border-color: rgba(128, 153, 189, 0.12);
|
|
3161
|
-
background: rgba(18, 27, 40, 0.92);
|
|
3162
|
-
box-shadow: 0 12px 28px rgba(2, 10, 24, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
3163
|
-
}
|
|
3164
|
-
:root[data-theme=dark] .session-nav-card:hover,
|
|
3165
|
-
:root[data-theme=dark] .session-nav-card.is-active {
|
|
3166
|
-
border-color: rgba(134, 184, 255, 0.18);
|
|
3167
|
-
background: rgba(29, 43, 64, 0.88);
|
|
3168
|
-
}
|
|
3169
|
-
:root[data-theme=dark] .session-nav-card.is-active {
|
|
3170
|
-
box-shadow: inset 3px 0 0 rgba(134, 184, 255, 0.82), 0 16px 32px rgba(2, 10, 24, 0.28);
|
|
3232
|
+
:root[data-theme=dark] .session-tree-section {
|
|
3233
|
+
border-color: rgba(140, 164, 197, 0.18);
|
|
3234
|
+
background: rgba(15, 23, 35, 0.92);
|
|
3235
|
+
box-shadow: 0 12px 28px rgba(2, 10, 24, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
3171
3236
|
}
|
|
3172
3237
|
:root[data-theme=dark] .trace-group-button,
|
|
3173
3238
|
:root[data-theme=dark] .nav-item,
|
|
@@ -3178,15 +3243,15 @@ pre {
|
|
|
3178
3243
|
:root[data-theme=dark] .tool-call-stack-item,
|
|
3179
3244
|
:root[data-theme=dark] .stream-segment,
|
|
3180
3245
|
:root[data-theme=dark] .conversation-bubble {
|
|
3181
|
-
border-color: rgba(
|
|
3182
|
-
background: rgba(
|
|
3183
|
-
box-shadow: 0
|
|
3246
|
+
border-color: rgba(140, 164, 197, 0.18);
|
|
3247
|
+
background: rgba(22, 33, 48, 0.97);
|
|
3248
|
+
box-shadow: 0 12px 28px rgba(2, 10, 24, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
3184
3249
|
}
|
|
3185
3250
|
:root[data-theme=dark] .nav-list > .nav-item:nth-child(even),
|
|
3186
3251
|
:root[data-theme=dark] .tree-node-card.is-trace,
|
|
3187
3252
|
:root[data-theme=dark] .message-card.role-tool {
|
|
3188
|
-
--expandable-fade-color: rgba(
|
|
3189
|
-
background: rgba(
|
|
3253
|
+
--expandable-fade-color: rgba(19, 29, 43, 0.99);
|
|
3254
|
+
background: rgba(19, 29, 43, 0.97);
|
|
3190
3255
|
}
|
|
3191
3256
|
:root[data-theme=dark] .tree-node-card.is-detail-trace:not(.is-active) {
|
|
3192
3257
|
border-color: rgba(134, 184, 255, 0.18);
|
|
@@ -3196,6 +3261,14 @@ pre {
|
|
|
3196
3261
|
0 10px 24px rgba(2, 10, 24, 0.18),
|
|
3197
3262
|
inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
|
3198
3263
|
}
|
|
3264
|
+
:root[data-theme=dark] .tree-node-card.is-in-path:not(.is-active) {
|
|
3265
|
+
border-color: rgba(145, 193, 255, 0.18);
|
|
3266
|
+
background: rgba(27, 40, 59, 0.98);
|
|
3267
|
+
box-shadow:
|
|
3268
|
+
inset 2px 0 0 rgba(134, 184, 255, 0.56),
|
|
3269
|
+
0 12px 26px rgba(2, 10, 24, 0.18),
|
|
3270
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
|
3271
|
+
}
|
|
3199
3272
|
:root[data-theme=dark] .trace-group.has-active-trace .trace-group-button,
|
|
3200
3273
|
:root[data-theme=dark] .trace-group-button:hover,
|
|
3201
3274
|
:root[data-theme=dark] .nav-item:hover,
|
|
@@ -3205,7 +3278,7 @@ pre {
|
|
|
3205
3278
|
:root[data-theme=dark] .trace-row:hover,
|
|
3206
3279
|
:root[data-theme=dark] .trace-row.is-active {
|
|
3207
3280
|
border-color: var(--line-strong);
|
|
3208
|
-
background: rgba(
|
|
3281
|
+
background: rgba(35, 50, 74, 0.99);
|
|
3209
3282
|
box-shadow:
|
|
3210
3283
|
inset 4px 0 0 rgba(134, 184, 255, 0.82),
|
|
3211
3284
|
0 14px 32px rgba(2, 10, 24, 0.26),
|
|
@@ -3213,19 +3286,23 @@ pre {
|
|
|
3213
3286
|
inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
|
3214
3287
|
}
|
|
3215
3288
|
:root[data-theme=dark] .trace-row-preview {
|
|
3216
|
-
color: rgba(
|
|
3289
|
+
color: rgba(235, 242, 251, 0.92);
|
|
3217
3290
|
}
|
|
3218
3291
|
:root[data-theme=dark] .trace-group-body,
|
|
3219
3292
|
:root[data-theme=dark] .conversation-thread > * + * {
|
|
3220
|
-
border-color: rgba(
|
|
3293
|
+
border-color: rgba(140, 164, 197, 0.16);
|
|
3221
3294
|
}
|
|
3222
3295
|
:root[data-theme=dark] .trace-nav-meta-row span:first-child,
|
|
3223
|
-
:root[data-theme=dark] .trace-elapsed-label
|
|
3224
|
-
|
|
3296
|
+
:root[data-theme=dark] .trace-elapsed-label,
|
|
3297
|
+
:root[data-theme=dark] .session-tree-timeline-meta {
|
|
3298
|
+
color: rgba(196, 210, 229, 0.9);
|
|
3225
3299
|
}
|
|
3226
3300
|
:root[data-theme=dark] .trace-elapsed-track::before {
|
|
3227
3301
|
background: rgba(128, 153, 189, 0.22);
|
|
3228
3302
|
}
|
|
3303
|
+
:root[data-theme=dark] .session-tree-timeline-track::before {
|
|
3304
|
+
background: rgba(128, 153, 189, 0.2);
|
|
3305
|
+
}
|
|
3229
3306
|
:root[data-theme=dark] .trace-elapsed-span {
|
|
3230
3307
|
background:
|
|
3231
3308
|
linear-gradient(
|
|
@@ -3234,6 +3311,14 @@ pre {
|
|
|
3234
3311
|
rgba(104, 158, 255, 0.96));
|
|
3235
3312
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 0 4px rgba(134, 184, 255, 0.08);
|
|
3236
3313
|
}
|
|
3314
|
+
:root[data-theme=dark] .session-tree-timeline-bar {
|
|
3315
|
+
border-color: rgba(134, 184, 255, 0.3);
|
|
3316
|
+
background:
|
|
3317
|
+
linear-gradient(
|
|
3318
|
+
90deg,
|
|
3319
|
+
rgba(134, 184, 255, 0.24),
|
|
3320
|
+
rgba(134, 184, 255, 0.62));
|
|
3321
|
+
}
|
|
3237
3322
|
:root[data-theme=dark] .trace-elapsed-bar.is-pending .trace-elapsed-span {
|
|
3238
3323
|
background:
|
|
3239
3324
|
linear-gradient(
|
|
@@ -3242,9 +3327,9 @@ pre {
|
|
|
3242
3327
|
rgba(134, 184, 255, 0.9));
|
|
3243
3328
|
}
|
|
3244
3329
|
:root[data-theme=dark] .hierarchy-timeline-panel {
|
|
3245
|
-
border-color: rgba(
|
|
3246
|
-
background: rgba(18, 27, 40, 0.
|
|
3247
|
-
box-shadow: 0
|
|
3330
|
+
border-color: rgba(140, 164, 197, 0.18);
|
|
3331
|
+
background: rgba(18, 27, 40, 0.92);
|
|
3332
|
+
box-shadow: 0 16px 36px rgba(2, 10, 24, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
3248
3333
|
}
|
|
3249
3334
|
:root[data-theme=dark] .hierarchy-timeline-axis-track,
|
|
3250
3335
|
:root[data-theme=dark] .hierarchy-timeline-row-track {
|
|
@@ -3256,7 +3341,7 @@ pre {
|
|
|
3256
3341
|
transparent 1px);
|
|
3257
3342
|
}
|
|
3258
3343
|
:root[data-theme=dark] .hierarchy-timeline-axis-label {
|
|
3259
|
-
color: rgba(
|
|
3344
|
+
color: rgba(209, 220, 236, 0.9);
|
|
3260
3345
|
}
|
|
3261
3346
|
:root[data-theme=dark] .ui-badge[data-semantic] {
|
|
3262
3347
|
border-color: color-mix(in srgb, var(--semantic-badge-color) 30%, rgba(128, 153, 189, 0.14));
|
|
@@ -3264,27 +3349,24 @@ pre {
|
|
|
3264
3349
|
color: color-mix(in srgb, var(--semantic-badge-color) 74%, white);
|
|
3265
3350
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
|
3266
3351
|
}
|
|
3267
|
-
:root[data-theme=dark] .hierarchy-timeline-hint {
|
|
3268
|
-
color: rgba(182, 197, 219, 0.72);
|
|
3269
|
-
}
|
|
3270
3352
|
:root[data-theme=dark] .hierarchy-timeline-row::before {
|
|
3271
|
-
background: rgba(
|
|
3353
|
+
background: rgba(23, 33, 49, 0.74);
|
|
3272
3354
|
}
|
|
3273
3355
|
:root[data-theme=dark] .hierarchy-timeline-row.is-clickable::before {
|
|
3274
3356
|
border-color: rgba(134, 184, 255, 0.12);
|
|
3275
|
-
background: rgba(
|
|
3357
|
+
background: rgba(28, 40, 59, 0.88);
|
|
3276
3358
|
box-shadow: 0 8px 20px rgba(2, 10, 24, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
3277
3359
|
}
|
|
3278
3360
|
:root[data-theme=dark] .hierarchy-timeline-row.is-clickable:hover::before {
|
|
3279
3361
|
border-color: rgba(134, 184, 255, 0.2);
|
|
3280
|
-
background: rgba(
|
|
3362
|
+
background: rgba(35, 50, 74, 0.94);
|
|
3281
3363
|
}
|
|
3282
3364
|
:root[data-theme=dark] .hierarchy-timeline-row.is-structure::before {
|
|
3283
3365
|
border-color: color-mix(in srgb, var(--timeline-row-color) 18%, rgba(128, 153, 189, 0.08));
|
|
3284
3366
|
background: color-mix(in srgb, var(--timeline-row-color) 8%, rgba(18, 27, 40, 0.4));
|
|
3285
3367
|
}
|
|
3286
3368
|
:root[data-theme=dark] .hierarchy-timeline-row.is-in-path::before {
|
|
3287
|
-
background: rgba(
|
|
3369
|
+
background: rgba(31, 45, 66, 0.82);
|
|
3288
3370
|
}
|
|
3289
3371
|
:root[data-theme=dark] .hierarchy-timeline-row.is-structure.is-in-path::before {
|
|
3290
3372
|
background: rgba(24, 35, 52, 0.38);
|
|
@@ -3296,16 +3378,9 @@ pre {
|
|
|
3296
3378
|
}
|
|
3297
3379
|
:root[data-theme=dark] .hierarchy-timeline-row.is-active::before {
|
|
3298
3380
|
border-color: rgba(134, 184, 255, 0.2);
|
|
3299
|
-
background: rgba(
|
|
3381
|
+
background: rgba(36, 52, 77, 0.96);
|
|
3300
3382
|
box-shadow: inset 3px 0 0 rgba(134, 184, 255, 0.82), 0 10px 22px rgba(2, 10, 24, 0.18);
|
|
3301
3383
|
}
|
|
3302
|
-
:root[data-theme=dark] .hierarchy-timeline-row-time,
|
|
3303
|
-
:root[data-theme=dark] .hierarchy-timeline-row-meta,
|
|
3304
|
-
:root[data-theme=dark] .hierarchy-timeline-row-duration,
|
|
3305
|
-
:root[data-theme=dark] .hierarchy-timeline-meta,
|
|
3306
|
-
:root[data-theme=dark] .hierarchy-timeline-title {
|
|
3307
|
-
color: rgba(182, 197, 219, 0.78);
|
|
3308
|
-
}
|
|
3309
3384
|
:root[data-theme=dark] .hierarchy-timeline-row-gutter::before,
|
|
3310
3385
|
:root[data-theme=dark] .hierarchy-timeline-row-gutter::after {
|
|
3311
3386
|
background: color-mix(in srgb, var(--timeline-row-color) 24%, rgba(128, 153, 189, 0.14));
|
|
@@ -3378,11 +3453,15 @@ pre {
|
|
|
3378
3453
|
background: rgba(105, 197, 156, 0.12);
|
|
3379
3454
|
color: var(--success);
|
|
3380
3455
|
}
|
|
3456
|
+
:root[data-theme=dark] .tabs-trigger {
|
|
3457
|
+
color: rgba(203, 216, 235, 0.92);
|
|
3458
|
+
opacity: 1;
|
|
3459
|
+
}
|
|
3381
3460
|
:root[data-theme=dark] .tabs-list {
|
|
3382
|
-
background: rgba(
|
|
3461
|
+
background: rgba(15, 23, 35, 0.96);
|
|
3383
3462
|
}
|
|
3384
3463
|
:root[data-theme=dark] .detail-tabs {
|
|
3385
|
-
background: rgba(
|
|
3464
|
+
background: rgba(15, 23, 35, 0.98);
|
|
3386
3465
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 1px 2px rgba(1, 7, 18, 0.22);
|
|
3387
3466
|
}
|
|
3388
3467
|
:root[data-theme=dark] .tabs-trigger:hover {
|
|
@@ -3404,61 +3483,65 @@ pre {
|
|
|
3404
3483
|
}
|
|
3405
3484
|
:root[data-theme=dark] .sheet-panel {
|
|
3406
3485
|
border-left-color: rgba(128, 153, 189, 0.14);
|
|
3407
|
-
background: rgba(
|
|
3486
|
+
background: rgba(10, 16, 25, 0.98);
|
|
3408
3487
|
box-shadow: -24px 0 70px rgba(1, 7, 18, 0.42);
|
|
3409
3488
|
}
|
|
3410
3489
|
:root[data-theme=dark] .conversation-row,
|
|
3411
3490
|
:root[data-theme=dark] .message-card {
|
|
3412
3491
|
--message-role-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
|
3492
|
+
color: rgba(244, 248, 255, 0.97);
|
|
3493
|
+
}
|
|
3494
|
+
:root[data-theme=dark] .conversation-role {
|
|
3495
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1px 2px rgba(1, 7, 18, 0.18);
|
|
3413
3496
|
}
|
|
3414
3497
|
:root[data-theme=dark] .conversation-row.is-user .conversation-bubble,
|
|
3415
3498
|
:root[data-theme=dark] .message-card.role-user {
|
|
3416
3499
|
--message-accent: rgba(76, 218, 157, 0.58);
|
|
3417
3500
|
--message-border-color: rgba(76, 218, 157, 0.28);
|
|
3418
|
-
--message-surface: rgba(
|
|
3501
|
+
--message-surface: rgba(14, 78, 55, 0.98);
|
|
3419
3502
|
--message-label-color: rgba(209, 255, 234, 0.98);
|
|
3420
3503
|
--message-label-border: rgba(76, 218, 157, 0.24);
|
|
3421
|
-
--message-label-surface: rgba(76, 218, 157, 0.
|
|
3422
|
-
--expandable-fade-color: rgba(
|
|
3504
|
+
--message-label-surface: rgba(76, 218, 157, 0.22);
|
|
3505
|
+
--expandable-fade-color: rgba(14, 78, 55, 0.99);
|
|
3423
3506
|
}
|
|
3424
3507
|
:root[data-theme=dark] .conversation-row.is-assistant .conversation-bubble,
|
|
3425
3508
|
:root[data-theme=dark] .message-card.role-assistant {
|
|
3426
3509
|
--message-accent: rgba(177, 108, 255, 0.54);
|
|
3427
3510
|
--message-border-color: rgba(177, 108, 255, 0.24);
|
|
3428
|
-
--message-surface: rgba(
|
|
3511
|
+
--message-surface: rgba(58, 34, 94, 0.98);
|
|
3429
3512
|
--message-label-color: rgba(231, 208, 255, 0.98);
|
|
3430
3513
|
--message-label-border: rgba(177, 108, 255, 0.22);
|
|
3431
|
-
--message-label-surface: rgba(177, 108, 255, 0.
|
|
3432
|
-
--expandable-fade-color: rgba(
|
|
3514
|
+
--message-label-surface: rgba(177, 108, 255, 0.2);
|
|
3515
|
+
--expandable-fade-color: rgba(58, 34, 94, 0.99);
|
|
3433
3516
|
}
|
|
3434
3517
|
:root[data-theme=dark] .conversation-row.is-system .conversation-bubble,
|
|
3435
3518
|
:root[data-theme=dark] .message-card.role-system {
|
|
3436
3519
|
--message-accent: rgba(79, 136, 255, 0.62);
|
|
3437
3520
|
--message-border-color: rgba(79, 136, 255, 0.28);
|
|
3438
|
-
--message-surface: rgba(
|
|
3521
|
+
--message-surface: rgba(21, 48, 102, 0.98);
|
|
3439
3522
|
--message-label-color: rgba(203, 221, 255, 0.98);
|
|
3440
3523
|
--message-label-border: rgba(79, 136, 255, 0.26);
|
|
3441
|
-
--message-label-surface: rgba(79, 136, 255, 0.
|
|
3442
|
-
--expandable-fade-color: rgba(
|
|
3524
|
+
--message-label-surface: rgba(79, 136, 255, 0.22);
|
|
3525
|
+
--expandable-fade-color: rgba(21, 48, 102, 0.99);
|
|
3443
3526
|
}
|
|
3444
3527
|
:root[data-theme=dark] .conversation-row.is-tool .conversation-bubble,
|
|
3445
3528
|
:root[data-theme=dark] .message-card.role-tool {
|
|
3446
3529
|
--message-accent: rgba(60, 212, 144, 0.56);
|
|
3447
3530
|
--message-border-color: rgba(60, 212, 144, 0.26);
|
|
3448
|
-
--message-surface: rgba(
|
|
3531
|
+
--message-surface: rgba(14, 69, 47, 0.98);
|
|
3449
3532
|
--message-label-color: rgba(203, 255, 229, 0.98);
|
|
3450
3533
|
--message-label-border: rgba(60, 212, 144, 0.22);
|
|
3451
|
-
--message-label-surface: rgba(60, 212, 144, 0.
|
|
3452
|
-
--expandable-fade-color: rgba(
|
|
3534
|
+
--message-label-surface: rgba(60, 212, 144, 0.2);
|
|
3535
|
+
--expandable-fade-color: rgba(14, 69, 47, 0.99);
|
|
3453
3536
|
}
|
|
3454
3537
|
:root[data-theme=dark] .conversation-row.is-tool-call .conversation-bubble {
|
|
3455
3538
|
--message-accent: rgba(255, 170, 66, 0.6);
|
|
3456
3539
|
--message-border-color: rgba(255, 170, 66, 0.28);
|
|
3457
|
-
--message-surface: rgba(
|
|
3540
|
+
--message-surface: rgba(94, 49, 10, 0.98);
|
|
3458
3541
|
--message-label-color: rgba(255, 228, 184, 0.98);
|
|
3459
3542
|
--message-label-border: rgba(255, 170, 66, 0.24);
|
|
3460
|
-
--message-label-surface: rgba(255, 170, 66, 0.
|
|
3461
|
-
--expandable-fade-color: rgba(
|
|
3543
|
+
--message-label-surface: rgba(255, 170, 66, 0.2);
|
|
3544
|
+
--expandable-fade-color: rgba(94, 49, 10, 0.99);
|
|
3462
3545
|
}
|
|
3463
3546
|
:root[data-theme=dark] .tool-result-bubble {
|
|
3464
3547
|
--expandable-fade-color: rgba(18, 34, 33, 0.99);
|
|
@@ -3495,6 +3578,10 @@ pre {
|
|
|
3495
3578
|
:root[data-theme=dark] .structured-markup-token.is-attr-value {
|
|
3496
3579
|
color: #9bc0ff;
|
|
3497
3580
|
}
|
|
3581
|
+
:root[data-theme=dark] .structured-markup-token.is-tag-punctuation,
|
|
3582
|
+
:root[data-theme=dark] .structured-markup-token.is-attr-punctuation {
|
|
3583
|
+
color: rgba(211, 222, 237, 0.82);
|
|
3584
|
+
}
|
|
3498
3585
|
:root[data-theme=dark] .markdown-body code {
|
|
3499
3586
|
background: rgba(101, 134, 182, 0.18);
|
|
3500
3587
|
}
|
|
@@ -3528,13 +3615,19 @@ pre {
|
|
|
3528
3615
|
background: rgba(13, 20, 31, 0.99);
|
|
3529
3616
|
}
|
|
3530
3617
|
:root[data-theme=dark] .json-syntax {
|
|
3531
|
-
color: #
|
|
3618
|
+
color: #ebf2ff;
|
|
3619
|
+
}
|
|
3620
|
+
:root[data-theme=dark] .stream-segment-copy,
|
|
3621
|
+
:root[data-theme=dark] .tool-result-content pre,
|
|
3622
|
+
:root[data-theme=dark] .markdown-body,
|
|
3623
|
+
:root[data-theme=dark] .message-card-body {
|
|
3624
|
+
color: rgba(241, 246, 255, 0.97);
|
|
3532
3625
|
}
|
|
3533
3626
|
:root[data-theme=dark] .json-token-key {
|
|
3534
|
-
color: #
|
|
3627
|
+
color: #bfdbff;
|
|
3535
3628
|
}
|
|
3536
3629
|
:root[data-theme=dark] .json-token-string {
|
|
3537
|
-
color: #
|
|
3630
|
+
color: #dfe8f7;
|
|
3538
3631
|
}
|
|
3539
3632
|
:root[data-theme=dark] .json-token-number {
|
|
3540
3633
|
color: #cba8ff;
|
|
@@ -3558,9 +3651,6 @@ pre {
|
|
|
3558
3651
|
border-color: rgba(134, 184, 255, 0.24);
|
|
3559
3652
|
background: rgba(134, 184, 255, 0.16);
|
|
3560
3653
|
}
|
|
3561
|
-
:root[data-theme=dark] .workspace-grid::-webkit-scrollbar-thumb {
|
|
3562
|
-
background: rgba(128, 153, 189, 0.28);
|
|
3563
|
-
}
|
|
3564
3654
|
[data-icon=inline-start] {
|
|
3565
3655
|
width: 1rem;
|
|
3566
3656
|
height: 1rem;
|
|
@@ -3678,7 +3768,7 @@ pre {
|
|
|
3678
3768
|
height: auto;
|
|
3679
3769
|
}
|
|
3680
3770
|
.content-scroll,
|
|
3681
|
-
.session-
|
|
3771
|
+
.session-tree-scroll,
|
|
3682
3772
|
.hierarchy-timeline-list,
|
|
3683
3773
|
.session-sidebar-shell .hierarchy-timeline-list,
|
|
3684
3774
|
.trace-detail-scroll,
|
|
@@ -3762,12 +3852,24 @@ pre {
|
|
|
3762
3852
|
min-width: 0;
|
|
3763
3853
|
width: 100%;
|
|
3764
3854
|
}
|
|
3765
|
-
.tree-
|
|
3766
|
-
|
|
3855
|
+
.tree-node-card {
|
|
3856
|
+
grid-template-columns: 1.8rem minmax(0, 1fr);
|
|
3857
|
+
}
|
|
3858
|
+
.tree-node-select,
|
|
3859
|
+
.tree-structure-select,
|
|
3860
|
+
.tree-trace-select,
|
|
3861
|
+
.session-tree-select {
|
|
3862
|
+
grid-template-columns: minmax(0, 1fr);
|
|
3767
3863
|
align-items: stretch;
|
|
3768
3864
|
}
|
|
3865
|
+
.session-tree-timeline {
|
|
3866
|
+
min-width: 0;
|
|
3867
|
+
width: 100%;
|
|
3868
|
+
flex-basis: auto;
|
|
3869
|
+
}
|
|
3769
3870
|
.trace-elapsed-bar,
|
|
3770
|
-
.nav-item-side-meta
|
|
3871
|
+
.nav-item-side-meta,
|
|
3872
|
+
.session-tree-timeline-meta {
|
|
3771
3873
|
justify-content: flex-start;
|
|
3772
3874
|
}
|
|
3773
3875
|
.trace-detail-secondary .hierarchy-timeline-axis,
|