@meridianlabs/inspect-scout-viewer 0.4.41 → 0.4.42
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/lib/index.js +5368 -2246
- package/lib/index.js.map +1 -1
- package/lib/src/app/timeline/components/TimelineEventsView.d.ts +3 -1
- package/lib/src/app/transcript/SearchPanel.d.ts +4 -3
- package/lib/src/app/transcript/hooks/useSearchReferenceLabels.d.ts +3 -7
- package/lib/src/app/transcript/scoutSearchAdapters.d.ts +12 -0
- package/lib/src/app/validation/components/ValidationCaseEditor.d.ts +1 -8
- package/lib/src/icons.d.ts +2 -2
- package/lib/src/router/url.d.ts +5 -3
- package/lib/src/types/generated.d.ts +6 -2
- package/lib/styles/index.css +910 -832
- package/package.json +6 -6
- package/lib/src/app/server/useSearches.d.ts +0 -43
- package/lib/src/app/transcript/searchPanelState.d.ts +0 -35
- package/lib/src/app/transcript/searchRequest.d.ts +0 -22
- package/lib/src/app/utils/autosizeTextarea.d.ts +0 -5
package/lib/styles/index.css
CHANGED
|
@@ -3035,9 +3035,24 @@ pre[class*="language-"] {
|
|
|
3035
3035
|
--inspect-msg-label-bg-hover: #ebebef;
|
|
3036
3036
|
--inspect-msg-label-border: #e4e4e9;
|
|
3037
3037
|
--inspect-msg-label-text: #5f5f68;
|
|
3038
|
+
|
|
3039
|
+
/* Tool block (header/edge/zones) tokens: neutral by default so the
|
|
3040
|
+
design-consistent look holds when Event Colors is off; the readable
|
|
3041
|
+
variant points them at the colored tool tokens below. The left edges
|
|
3042
|
+
are plain 1px card borders uncolored, 3px accent bands colorized. */
|
|
3043
|
+
--inspect-tool-block-edge: 1px solid var(--bs-light-border-subtle);
|
|
3044
|
+
--inspect-tool-block-header-bg: var(--bs-tertiary-bg);
|
|
3045
|
+
/* The input continues the header surface; the output is lighter (plain
|
|
3046
|
+
page background) so the call and its result read as distinct zones. */
|
|
3047
|
+
--inspect-tool-block-input-bg: var(--inspect-tool-block-header-bg);
|
|
3048
|
+
--inspect-tool-block-output-bg: var(--bs-body-bg);
|
|
3049
|
+
--inspect-tool-block-ink: var(--bs-secondary-color);
|
|
3050
|
+
--inspect-turn-prose-edge: 1px solid var(--bs-light-border-subtle);
|
|
3038
3051
|
}
|
|
3039
3052
|
|
|
3040
3053
|
:root[data-bs-theme="dark"] {
|
|
3054
|
+
--inspect-tool-output-bg: #14171c;
|
|
3055
|
+
|
|
3041
3056
|
--inspect-msg-label-bg: #2a2a2e;
|
|
3042
3057
|
--inspect-msg-label-bg-hover: #33333a;
|
|
3043
3058
|
--inspect-msg-label-border: #3a3a40;
|
|
@@ -3063,6 +3078,12 @@ pre[class*="language-"] {
|
|
|
3063
3078
|
already emit (no per-role classes, no duplicated styles). */
|
|
3064
3079
|
:root[data-theme-variant="readable"] {
|
|
3065
3080
|
--bs-body-color: var(--inspect-readable-body-color);
|
|
3081
|
+
--inspect-tool-block-edge: 3px solid var(--inspect-readable-tool-call-border);
|
|
3082
|
+
--inspect-tool-block-header-bg: var(--inspect-readable-tool-call-bg);
|
|
3083
|
+
--inspect-tool-block-input-bg: var(--inspect-readable-tool-call-bg);
|
|
3084
|
+
--inspect-tool-block-output-bg: var(--inspect-tool-output-bg);
|
|
3085
|
+
--inspect-tool-block-ink: var(--inspect-readable-tool-call-border);
|
|
3086
|
+
--inspect-turn-prose-edge: 3px solid var(--inspect-readable-assistant-border);
|
|
3066
3087
|
}
|
|
3067
3088
|
|
|
3068
3089
|
:root[data-theme-variant="readable"] [data-message-role] {
|
|
@@ -3111,55 +3132,6 @@ pre[class*="language-"] {
|
|
|
3111
3132
|
border-left: 1px solid var(--bs-light-border-subtle);
|
|
3112
3133
|
}
|
|
3113
3134
|
|
|
3114
|
-
/* The tool call is its own peer block: under readable the whole box is the blue
|
|
3115
|
-
call surface (header + input). */
|
|
3116
|
-
:root[data-theme-variant="readable"] [data-message-kind="tool"] {
|
|
3117
|
-
background-color: var(--inspect-readable-tool-call-bg);
|
|
3118
|
-
border-left: 3px solid var(--inspect-readable-tool-call-border);
|
|
3119
|
-
}
|
|
3120
|
-
|
|
3121
|
-
/* Flush the call input AND the output to the box padding edge in EVERY theme so
|
|
3122
|
-
they line up. The input otherwise carries ToolInput's .toolView padding (and,
|
|
3123
|
-
under readable, the .tool-call-input padding) plus the prism code block's own
|
|
3124
|
-
padding/margin, over-indenting it relative to the output. The `:root` prefix
|
|
3125
|
-
lifts specificity above the readable .tool-call-input rule. */
|
|
3126
|
-
:root [data-message-kind="tool"] pre.tool-call-input,
|
|
3127
|
-
:root [data-message-kind="tool"] div.tool-call-input {
|
|
3128
|
-
border: 0;
|
|
3129
|
-
border-radius: 0;
|
|
3130
|
-
padding: 0 !important;
|
|
3131
|
-
}
|
|
3132
|
-
:root [data-message-kind="tool"] .tool-call-input pre[class*="language-"] {
|
|
3133
|
-
margin: 0 !important;
|
|
3134
|
-
padding: 0 !important;
|
|
3135
|
-
}
|
|
3136
|
-
:root [data-message-kind="tool-result"] .tool-output {
|
|
3137
|
-
margin: 0 !important;
|
|
3138
|
-
padding: 0 !important;
|
|
3139
|
-
}
|
|
3140
|
-
:root[data-theme-variant="readable"]
|
|
3141
|
-
[data-message-kind="tool"]
|
|
3142
|
-
pre.tool-call-input,
|
|
3143
|
-
:root[data-theme-variant="readable"]
|
|
3144
|
-
[data-message-kind="tool"]
|
|
3145
|
-
div.tool-call-input {
|
|
3146
|
-
background-color: transparent;
|
|
3147
|
-
}
|
|
3148
|
-
|
|
3149
|
-
/* The tool output attaches beneath its call — a light-gray box that shares the
|
|
3150
|
-
call's blue left gutter so the pair reads as one connected card. */
|
|
3151
|
-
:root[data-theme-variant="readable"] [data-message-kind="tool-result"] {
|
|
3152
|
-
background-color: var(--inspect-tool-output-bg);
|
|
3153
|
-
border-left: 3px solid var(--inspect-readable-tool-call-border);
|
|
3154
|
-
}
|
|
3155
|
-
:root[data-theme-variant="readable"]
|
|
3156
|
-
[data-message-kind="tool-result"]
|
|
3157
|
-
.tool-output {
|
|
3158
|
-
background-color: transparent;
|
|
3159
|
-
border: 0;
|
|
3160
|
-
border-radius: 0;
|
|
3161
|
-
}
|
|
3162
|
-
|
|
3163
3135
|
/* Light subtle box around tool output (standalone transcript tool events). */
|
|
3164
3136
|
:root[data-theme-variant="readable"] .tool-output {
|
|
3165
3137
|
border: 1px solid var(--bs-light-border-subtle);
|
|
@@ -5242,7 +5214,7 @@ pre > code {
|
|
|
5242
5214
|
color: var(--vscode-errorForeground);
|
|
5243
5215
|
font-size: 0.9rem;
|
|
5244
5216
|
}
|
|
5245
|
-
.
|
|
5217
|
+
._backdrop_1hn8l_1 {
|
|
5246
5218
|
position: fixed;
|
|
5247
5219
|
inset: 0;
|
|
5248
5220
|
background: rgba(0, 0, 0, 0.36);
|
|
@@ -5250,10 +5222,13 @@ pre > code {
|
|
|
5250
5222
|
align-items: flex-start;
|
|
5251
5223
|
justify-content: center;
|
|
5252
5224
|
padding-top: 15vh;
|
|
5253
|
-
|
|
5225
|
+
/* Above app chrome: Bootstrap's sticky-top navbar is 1020 and fixed
|
|
5226
|
+
elements are 1030, so a modal must clear those (matches the standard
|
|
5227
|
+
Bootstrap modal layer). */
|
|
5228
|
+
z-index: 1050;
|
|
5254
5229
|
}
|
|
5255
5230
|
|
|
5256
|
-
.
|
|
5231
|
+
._modal_1hn8l_15 {
|
|
5257
5232
|
background: var(--vscode-editor-background);
|
|
5258
5233
|
border: 1px solid
|
|
5259
5234
|
var(--vscode-widget-border, var(--vscode-editorWidget-border));
|
|
@@ -5266,7 +5241,7 @@ pre > code {
|
|
|
5266
5241
|
flex-direction: column;
|
|
5267
5242
|
}
|
|
5268
5243
|
|
|
5269
|
-
.
|
|
5244
|
+
._header_1hn8l_28 {
|
|
5270
5245
|
display: flex;
|
|
5271
5246
|
justify-content: space-between;
|
|
5272
5247
|
align-items: center;
|
|
@@ -5275,14 +5250,14 @@ pre > code {
|
|
|
5275
5250
|
var(--vscode-widget-border, var(--vscode-editorWidget-border));
|
|
5276
5251
|
}
|
|
5277
5252
|
|
|
5278
|
-
.
|
|
5253
|
+
._title_1hn8l_37 {
|
|
5279
5254
|
margin: 0;
|
|
5280
5255
|
font-size: 14px;
|
|
5281
5256
|
font-weight: 600;
|
|
5282
5257
|
color: var(--vscode-foreground);
|
|
5283
5258
|
}
|
|
5284
5259
|
|
|
5285
|
-
.
|
|
5260
|
+
._closeButton_1hn8l_44 {
|
|
5286
5261
|
background: none;
|
|
5287
5262
|
border: none;
|
|
5288
5263
|
color: var(--vscode-foreground);
|
|
@@ -5293,19 +5268,38 @@ pre > code {
|
|
|
5293
5268
|
justify-content: center;
|
|
5294
5269
|
}
|
|
5295
5270
|
|
|
5296
|
-
.
|
|
5271
|
+
._closeButton_1hn8l_44:hover {
|
|
5297
5272
|
background: var(--vscode-toolbar-hoverBackground);
|
|
5298
5273
|
border-radius: 4px;
|
|
5299
5274
|
}
|
|
5300
5275
|
|
|
5301
|
-
.
|
|
5276
|
+
._body_1hn8l_60 {
|
|
5302
5277
|
padding: 16px;
|
|
5303
5278
|
color: var(--vscode-foreground);
|
|
5304
5279
|
font-size: 13px;
|
|
5280
|
+
}
|
|
5281
|
+
|
|
5282
|
+
._overflowAuto_1hn8l_66 {
|
|
5305
5283
|
overflow-y: auto;
|
|
5306
5284
|
}
|
|
5307
5285
|
|
|
5308
|
-
.
|
|
5286
|
+
._overflowHidden_1hn8l_70 {
|
|
5287
|
+
overflow: hidden;
|
|
5288
|
+
}
|
|
5289
|
+
|
|
5290
|
+
._overflowScroll_1hn8l_74 {
|
|
5291
|
+
overflow: scroll;
|
|
5292
|
+
}
|
|
5293
|
+
|
|
5294
|
+
._overflowVisible_1hn8l_78 {
|
|
5295
|
+
overflow: visible;
|
|
5296
|
+
}
|
|
5297
|
+
|
|
5298
|
+
._noPadding_1hn8l_82 {
|
|
5299
|
+
padding: 0;
|
|
5300
|
+
}
|
|
5301
|
+
|
|
5302
|
+
._footer_1hn8l_86 {
|
|
5309
5303
|
display: flex;
|
|
5310
5304
|
justify-content: flex-end;
|
|
5311
5305
|
gap: 8px;
|
|
@@ -5664,6 +5658,122 @@ pre > code {
|
|
|
5664
5658
|
opacity: 0.8;
|
|
5665
5659
|
}
|
|
5666
5660
|
}
|
|
5661
|
+
._separator_ts678_1 {
|
|
5662
|
+
flex: 0 0 1px;
|
|
5663
|
+
background-color: var(--bs-border-color);
|
|
5664
|
+
}
|
|
5665
|
+
|
|
5666
|
+
._rail_ts678_6 {
|
|
5667
|
+
align-self: stretch;
|
|
5668
|
+
background-color: var(--bs-body-bg);
|
|
5669
|
+
}
|
|
5670
|
+
|
|
5671
|
+
._railSticky_ts678_11 {
|
|
5672
|
+
position: sticky;
|
|
5673
|
+
}
|
|
5674
|
+
/* 1px divider to the panel's left, stretched to the full row height so the
|
|
5675
|
+
resizer it hosts spans the whole panel edge. */
|
|
5676
|
+
._divider_1538e_3 {
|
|
5677
|
+
position: relative;
|
|
5678
|
+
flex: 0 0 1px;
|
|
5679
|
+
align-self: stretch;
|
|
5680
|
+
background-color: var(--bs-border-color);
|
|
5681
|
+
}
|
|
5682
|
+
|
|
5683
|
+
._resizer_1538e_10 {
|
|
5684
|
+
position: absolute;
|
|
5685
|
+
top: 0;
|
|
5686
|
+
bottom: 0;
|
|
5687
|
+
left: -3px;
|
|
5688
|
+
width: 7px;
|
|
5689
|
+
cursor: col-resize;
|
|
5690
|
+
touch-action: none;
|
|
5691
|
+
user-select: none;
|
|
5692
|
+
/* Above the panel and content headers so the hover highlight is one
|
|
5693
|
+
continuous line, but below sticky swimlanes (z-index 500) and the sample
|
|
5694
|
+
header so it never paints over them when scrolled. */
|
|
5695
|
+
z-index: 200;
|
|
5696
|
+
background-color: transparent;
|
|
5697
|
+
}
|
|
5698
|
+
|
|
5699
|
+
/* Crisp highlight centered on the 1px divider, so hover reads as a clean line
|
|
5700
|
+
instead of a fat bar bleeding over the neighboring header bars. */
|
|
5701
|
+
._resizer_1538e_10::after {
|
|
5702
|
+
content: "";
|
|
5703
|
+
position: absolute;
|
|
5704
|
+
top: 0;
|
|
5705
|
+
bottom: 0;
|
|
5706
|
+
left: 50%;
|
|
5707
|
+
width: 2px;
|
|
5708
|
+
transform: translateX(-50%);
|
|
5709
|
+
background-color: transparent;
|
|
5710
|
+
transition: background-color 120ms ease;
|
|
5711
|
+
}
|
|
5712
|
+
|
|
5713
|
+
._resizer_1538e_10:hover::after,
|
|
5714
|
+
._resizer_1538e_10:active::after {
|
|
5715
|
+
background-color: var(--bs-primary);
|
|
5716
|
+
}
|
|
5717
|
+
|
|
5718
|
+
/* No padding: hosted panels (Search / Scans) own their internal padding and
|
|
5719
|
+
render full-width header bars, so the column must be flush. */
|
|
5720
|
+
._panel_1538e_47 {
|
|
5721
|
+
position: sticky;
|
|
5722
|
+
padding: 0;
|
|
5723
|
+
align-self: start;
|
|
5724
|
+
background-color: var(--bs-body-bg);
|
|
5725
|
+
overflow-y: auto;
|
|
5726
|
+
scrollbar-width: thin;
|
|
5727
|
+
}
|
|
5728
|
+
._rail_1llfi_1 {
|
|
5729
|
+
display: flex;
|
|
5730
|
+
flex-direction: column;
|
|
5731
|
+
align-items: stretch;
|
|
5732
|
+
width: 100%;
|
|
5733
|
+
gap: 0.25rem;
|
|
5734
|
+
}
|
|
5735
|
+
|
|
5736
|
+
._item_1llfi_9 {
|
|
5737
|
+
all: unset;
|
|
5738
|
+
box-sizing: border-box;
|
|
5739
|
+
cursor: pointer;
|
|
5740
|
+
display: flex;
|
|
5741
|
+
flex-direction: column;
|
|
5742
|
+
align-items: center;
|
|
5743
|
+
gap: 0.2rem;
|
|
5744
|
+
padding: 0.5rem 0.25rem;
|
|
5745
|
+
color: var(--bs-secondary-color);
|
|
5746
|
+
border-left: 2px solid transparent;
|
|
5747
|
+
transition:
|
|
5748
|
+
color 120ms ease,
|
|
5749
|
+
background-color 120ms ease;
|
|
5750
|
+
}
|
|
5751
|
+
|
|
5752
|
+
._item_1llfi_9:hover:not(:disabled) {
|
|
5753
|
+
color: var(--bs-body-color);
|
|
5754
|
+
background-color: var(--bs-tertiary-bg);
|
|
5755
|
+
}
|
|
5756
|
+
|
|
5757
|
+
._item_1llfi_9:disabled {
|
|
5758
|
+
cursor: default;
|
|
5759
|
+
opacity: 0.45;
|
|
5760
|
+
}
|
|
5761
|
+
|
|
5762
|
+
._itemActive_1llfi_35 {
|
|
5763
|
+
color: var(--bs-body-color);
|
|
5764
|
+
border-left-color: var(--bs-primary);
|
|
5765
|
+
background-color: var(--bs-tertiary-bg);
|
|
5766
|
+
}
|
|
5767
|
+
|
|
5768
|
+
._icon_1llfi_41 {
|
|
5769
|
+
font-size: 1.1rem;
|
|
5770
|
+
line-height: 1;
|
|
5771
|
+
}
|
|
5772
|
+
|
|
5773
|
+
._label_1llfi_46 {
|
|
5774
|
+
text-align: center;
|
|
5775
|
+
line-height: 1.1;
|
|
5776
|
+
}
|
|
5667
5777
|
._rootControl_1d1i3_1 {
|
|
5668
5778
|
background-color: var(--bs-body-bg);
|
|
5669
5779
|
border-radius: var(--bs-border-radius);
|
|
@@ -5709,6 +5819,51 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
5709
5819
|
opacity: 0.5;
|
|
5710
5820
|
cursor: not-allowed;
|
|
5711
5821
|
}
|
|
5822
|
+
._header_2b98m_1 {
|
|
5823
|
+
display: flex;
|
|
5824
|
+
align-items: center;
|
|
5825
|
+
justify-content: space-between;
|
|
5826
|
+
padding: 0.5rem;
|
|
5827
|
+
flex-shrink: 0;
|
|
5828
|
+
height: 39px;
|
|
5829
|
+
border-bottom: 1px solid var(--bs-border-color);
|
|
5830
|
+
background-color: var(--bs-light);
|
|
5831
|
+
}
|
|
5832
|
+
|
|
5833
|
+
._headerTitle_2b98m_12 {
|
|
5834
|
+
margin: 0;
|
|
5835
|
+
font-size: var(--inspect-font-size-smallest);
|
|
5836
|
+
color: var(--bs-body-color);
|
|
5837
|
+
text-transform: uppercase;
|
|
5838
|
+
font-weight: 400;
|
|
5839
|
+
}
|
|
5840
|
+
|
|
5841
|
+
._headerIcon_2b98m_20 {
|
|
5842
|
+
margin-right: 0.5em;
|
|
5843
|
+
}
|
|
5844
|
+
|
|
5845
|
+
._headerSecondary_2b98m_24 {
|
|
5846
|
+
font-size: var(--inspect-font-size-smallest);
|
|
5847
|
+
color: var(--bs-secondary-color);
|
|
5848
|
+
}
|
|
5849
|
+
|
|
5850
|
+
._headerActions_2b98m_29 {
|
|
5851
|
+
display: flex;
|
|
5852
|
+
align-items: center;
|
|
5853
|
+
gap: 0.25rem;
|
|
5854
|
+
}
|
|
5855
|
+
|
|
5856
|
+
._closeButton_2b98m_35 {
|
|
5857
|
+
all: unset;
|
|
5858
|
+
cursor: pointer;
|
|
5859
|
+
display: inline-flex;
|
|
5860
|
+
align-items: center;
|
|
5861
|
+
}
|
|
5862
|
+
|
|
5863
|
+
._closeButton_2b98m_35:focus-visible {
|
|
5864
|
+
outline: 1px solid var(--bs-primary);
|
|
5865
|
+
outline-offset: 1px;
|
|
5866
|
+
}
|
|
5712
5867
|
._sourcePanel_bat6y_1 {
|
|
5713
5868
|
width: 100%;
|
|
5714
5869
|
padding: 0.5em;
|
|
@@ -5922,27 +6077,27 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
5922
6077
|
font-size: var(--inspect-font-size-smallest);
|
|
5923
6078
|
padding: 0.1em 0.5em;
|
|
5924
6079
|
}
|
|
5925
|
-
.
|
|
6080
|
+
._outer_1ml7m_1 {
|
|
5926
6081
|
/* Positioned so the block-left sticky toggle's containing block is this
|
|
5927
6082
|
wrapper — keeps sticky behavior scoped to the panel instead of leaking
|
|
5928
6083
|
to some arbitrary positioned ancestor up the tree. */
|
|
5929
6084
|
position: relative;
|
|
5930
6085
|
}
|
|
5931
6086
|
|
|
5932
|
-
.
|
|
6087
|
+
._expandablePanel_1ml7m_8 {
|
|
5933
6088
|
position: relative;
|
|
5934
6089
|
}
|
|
5935
6090
|
|
|
5936
|
-
.
|
|
6091
|
+
._expandableBordered_1ml7m_12 {
|
|
5937
6092
|
border: solid var(--bs-light-border-subtle) 1px;
|
|
5938
6093
|
padding: 0.5em;
|
|
5939
6094
|
}
|
|
5940
6095
|
|
|
5941
|
-
.
|
|
6096
|
+
._expandableTogglable_1ml7m_17 {
|
|
5942
6097
|
margin-bottom: 1em;
|
|
5943
6098
|
}
|
|
5944
6099
|
|
|
5945
|
-
.
|
|
6100
|
+
._expandableContents_1ml7m_21 {
|
|
5946
6101
|
font-size: var(--inspect-font-size-base);
|
|
5947
6102
|
}
|
|
5948
6103
|
|
|
@@ -5958,7 +6113,7 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
5958
6113
|
gradient) so the affordance works on any surface, regardless of the
|
|
5959
6114
|
panel's bg. The inline-right toggle is a sibling of this wrapper, so it
|
|
5960
6115
|
stays fully opaque. */
|
|
5961
|
-
.
|
|
6116
|
+
._expandableTruncated_1ml7m_37 {
|
|
5962
6117
|
-webkit-mask-image: linear-gradient(
|
|
5963
6118
|
to bottom,
|
|
5964
6119
|
black calc(100% - 3rem),
|
|
@@ -5967,7 +6122,7 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
5967
6122
|
mask-image: linear-gradient(to bottom, black calc(100% - 3rem), transparent);
|
|
5968
6123
|
}
|
|
5969
6124
|
|
|
5970
|
-
.
|
|
6125
|
+
._moreToggle_1ml7m_46 {
|
|
5971
6126
|
display: flex;
|
|
5972
6127
|
margin-top: 0;
|
|
5973
6128
|
height: 20px;
|
|
@@ -5977,11 +6132,14 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
5977
6132
|
color: var(--bs-link-color);
|
|
5978
6133
|
}
|
|
5979
6134
|
|
|
5980
|
-
.
|
|
6135
|
+
._moreToggle_1ml7m_46._bordered_1ml7m_56 {
|
|
5981
6136
|
border-top: solid var(--bs-light-border-subtle) 1px;
|
|
5982
6137
|
}
|
|
5983
6138
|
|
|
5984
|
-
|
|
6139
|
+
/* Double class beats Bootstrap's `.btn` regardless of stylesheet order —
|
|
6140
|
+
in scout, Bootstrap loads after this module and its 6px 12px padding
|
|
6141
|
+
overflowed the fixed-height toggle bar. */
|
|
6142
|
+
._moreToggle_1ml7m_46 ._moreToggleButton_1ml7m_63 {
|
|
5985
6143
|
font-size: var(--inspect-font-size-smaller);
|
|
5986
6144
|
border: none;
|
|
5987
6145
|
padding: 0rem 0.5rem;
|
|
@@ -5992,7 +6150,7 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
5992
6150
|
/* Fills the panel so its sticky child is bounded by the panel's rect.
|
|
5993
6151
|
pointer-events: none lets clicks pass through to the content behind;
|
|
5994
6152
|
the sticky child re-enables pointer events on itself. */
|
|
5995
|
-
.
|
|
6153
|
+
._inlineToggleHolder_1ml7m_74 {
|
|
5996
6154
|
position: absolute;
|
|
5997
6155
|
inset: 0;
|
|
5998
6156
|
display: flex;
|
|
@@ -6004,13 +6162,13 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
6004
6162
|
z-index: 2;
|
|
6005
6163
|
}
|
|
6006
6164
|
|
|
6007
|
-
.
|
|
6165
|
+
._inlineToggleSticky_1ml7m_86 {
|
|
6008
6166
|
position: sticky;
|
|
6009
6167
|
bottom: 0.25em;
|
|
6010
6168
|
pointer-events: auto;
|
|
6011
6169
|
}
|
|
6012
6170
|
|
|
6013
|
-
.
|
|
6171
|
+
._moreToggle_1ml7m_46._blockLeft_1ml7m_92 {
|
|
6014
6172
|
width: fit-content;
|
|
6015
6173
|
margin-top: 0.2em;
|
|
6016
6174
|
margin-bottom: 0.5em;
|
|
@@ -6169,88 +6327,362 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
6169
6327
|
text-decoration-style: solid;
|
|
6170
6328
|
background-color: var(--bs-primary-bg-subtle);
|
|
6171
6329
|
}
|
|
6172
|
-
.
|
|
6173
|
-
|
|
6174
|
-
|
|
6175
|
-
|
|
6330
|
+
._container_1sdtt_1 {
|
|
6331
|
+
display: flex;
|
|
6332
|
+
flex-direction: column;
|
|
6333
|
+
height: 100%;
|
|
6334
|
+
min-height: 0;
|
|
6176
6335
|
}
|
|
6177
6336
|
|
|
6178
|
-
.
|
|
6179
|
-
|
|
6180
|
-
|
|
6181
|
-
display:
|
|
6182
|
-
|
|
6183
|
-
grid-auto-rows: max-content;
|
|
6184
|
-
row-gap: 1rem;
|
|
6337
|
+
._body_1sdtt_8 {
|
|
6338
|
+
flex: 1;
|
|
6339
|
+
min-height: 0;
|
|
6340
|
+
display: flex;
|
|
6341
|
+
flex-direction: column;
|
|
6185
6342
|
}
|
|
6186
6343
|
|
|
6187
|
-
.
|
|
6344
|
+
._searchArea_1sdtt_15 {
|
|
6345
|
+
padding: 0.5rem;
|
|
6346
|
+
border-bottom: 1px solid var(--bs-border-color);
|
|
6188
6347
|
display: flex;
|
|
6189
6348
|
flex-direction: column;
|
|
6190
|
-
|
|
6191
|
-
flex-shrink: 1;
|
|
6192
|
-
padding: 0.3rem;
|
|
6193
|
-
border-radius: var(--bs-border-radius);
|
|
6349
|
+
gap: 0.45rem;
|
|
6194
6350
|
}
|
|
6195
6351
|
|
|
6196
|
-
.
|
|
6197
|
-
|
|
6198
|
-
|
|
6352
|
+
._inputShell_1sdtt_23 {
|
|
6353
|
+
display: flex;
|
|
6354
|
+
min-width: 0;
|
|
6199
6355
|
}
|
|
6200
6356
|
|
|
6201
|
-
.
|
|
6202
|
-
|
|
6357
|
+
._inputShell_1sdtt_23 vscode-textarea {
|
|
6358
|
+
display: block;
|
|
6359
|
+
width: 100%;
|
|
6203
6360
|
}
|
|
6204
6361
|
|
|
6205
|
-
.
|
|
6206
|
-
|
|
6362
|
+
._controlsRow_1sdtt_33 {
|
|
6363
|
+
display: flex;
|
|
6364
|
+
align-items: center;
|
|
6365
|
+
gap: 0.4rem;
|
|
6366
|
+
flex-wrap: wrap;
|
|
6207
6367
|
}
|
|
6208
6368
|
|
|
6209
|
-
.
|
|
6210
|
-
|
|
6211
|
-
|
|
6369
|
+
._topRow_1sdtt_40 {
|
|
6370
|
+
display: flex;
|
|
6371
|
+
align-items: center;
|
|
6372
|
+
justify-content: space-between;
|
|
6373
|
+
gap: 0.5rem;
|
|
6212
6374
|
}
|
|
6213
|
-
|
|
6375
|
+
|
|
6376
|
+
._typeToggle_1sdtt_47 {
|
|
6214
6377
|
display: flex;
|
|
6215
|
-
flex
|
|
6216
|
-
height: 100vh;
|
|
6217
|
-
width: 100vw;
|
|
6218
|
-
overflow: hidden;
|
|
6378
|
+
flex: 0 0 auto;
|
|
6219
6379
|
}
|
|
6220
6380
|
|
|
6221
|
-
.
|
|
6381
|
+
._topActions_1sdtt_52 {
|
|
6222
6382
|
display: flex;
|
|
6223
|
-
|
|
6224
|
-
|
|
6225
|
-
overflow: hidden;
|
|
6383
|
+
align-items: center;
|
|
6384
|
+
gap: 0.2rem;
|
|
6226
6385
|
}
|
|
6227
6386
|
|
|
6228
|
-
.
|
|
6229
|
-
|
|
6230
|
-
|
|
6387
|
+
._textarea_1sdtt_58 {
|
|
6388
|
+
width: 100%;
|
|
6389
|
+
font-family: inherit;
|
|
6390
|
+
font-size: var(--inspect-font-size-small);
|
|
6391
|
+
color: var(--bs-body-color);
|
|
6231
6392
|
}
|
|
6232
6393
|
|
|
6233
|
-
.
|
|
6234
|
-
|
|
6394
|
+
._modeRow_1sdtt_65 {
|
|
6395
|
+
flex: 1 1 16rem;
|
|
6396
|
+
min-width: 0;
|
|
6397
|
+
min-height: 0;
|
|
6235
6398
|
}
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
display:
|
|
6399
|
+
|
|
6400
|
+
._modeControls_1sdtt_71 {
|
|
6401
|
+
display: flex;
|
|
6402
|
+
flex-wrap: wrap;
|
|
6403
|
+
gap: 0.3rem;
|
|
6239
6404
|
}
|
|
6240
6405
|
|
|
6241
|
-
.
|
|
6242
|
-
display:
|
|
6406
|
+
._modeToggle_1sdtt_77 {
|
|
6407
|
+
display: flex;
|
|
6243
6408
|
align-items: center;
|
|
6244
6409
|
justify-content: center;
|
|
6245
|
-
|
|
6246
|
-
border:
|
|
6247
|
-
padding: 0.25rem 0.4rem;
|
|
6248
|
-
color: inherit;
|
|
6249
|
-
cursor: pointer;
|
|
6410
|
+
padding: 0.2rem;
|
|
6411
|
+
border: 1px solid var(--bs-border-color);
|
|
6250
6412
|
border-radius: var(--bs-border-radius);
|
|
6413
|
+
background: var(--bs-body-bg);
|
|
6414
|
+
color: var(--bs-secondary-color);
|
|
6415
|
+
cursor: pointer;
|
|
6416
|
+
font-size: 14px;
|
|
6251
6417
|
line-height: 1;
|
|
6252
|
-
|
|
6253
|
-
|
|
6418
|
+
transition:
|
|
6419
|
+
border-color 0.12s ease,
|
|
6420
|
+
background-color 0.12s ease,
|
|
6421
|
+
color 0.12s ease;
|
|
6422
|
+
}
|
|
6423
|
+
|
|
6424
|
+
._modeToggle_1sdtt_77:hover {
|
|
6425
|
+
background-color: var(--bs-secondary-bg);
|
|
6426
|
+
color: var(--bs-body-color);
|
|
6427
|
+
}
|
|
6428
|
+
|
|
6429
|
+
._modeToggleActive_1sdtt_100 {
|
|
6430
|
+
background-color: var(--bs-secondary-bg);
|
|
6431
|
+
color: var(--bs-body-color);
|
|
6432
|
+
}
|
|
6433
|
+
|
|
6434
|
+
._modelPill_1sdtt_105 {
|
|
6435
|
+
display: flex;
|
|
6436
|
+
align-items: center;
|
|
6437
|
+
gap: 0.35rem;
|
|
6438
|
+
width: 100%;
|
|
6439
|
+
min-width: 0;
|
|
6440
|
+
padding: 0.15rem 0.45rem;
|
|
6441
|
+
padding-right: 0;
|
|
6442
|
+
border: 1px solid var(--bs-border-color);
|
|
6443
|
+
border-radius: var(--bs-border-radius);
|
|
6444
|
+
background-color: var(--bs-body-bg);
|
|
6445
|
+
transition: border-color 0.12s ease;
|
|
6446
|
+
}
|
|
6447
|
+
|
|
6448
|
+
._modelPill_1sdtt_105:focus-within {
|
|
6449
|
+
border-color: var(--vscode-focusBorder);
|
|
6450
|
+
}
|
|
6451
|
+
|
|
6452
|
+
._modelInputShell_1sdtt_123 {
|
|
6453
|
+
flex: 1;
|
|
6454
|
+
min-width: 0;
|
|
6455
|
+
}
|
|
6456
|
+
|
|
6457
|
+
._modelInput_1sdtt_123 {
|
|
6458
|
+
flex: 1;
|
|
6459
|
+
min-width: 0;
|
|
6460
|
+
font-family: inherit;
|
|
6461
|
+
font-size: var(--inspect-font-size-small);
|
|
6462
|
+
line-height: 1.4;
|
|
6463
|
+
padding: 0.05rem 0;
|
|
6464
|
+
border: 0;
|
|
6465
|
+
background: transparent;
|
|
6466
|
+
color: var(--bs-body-color);
|
|
6467
|
+
}
|
|
6468
|
+
|
|
6469
|
+
._modelInput_1sdtt_123:focus {
|
|
6470
|
+
outline: none;
|
|
6471
|
+
}
|
|
6472
|
+
|
|
6473
|
+
._iconAction_1sdtt_144 {
|
|
6474
|
+
display: flex;
|
|
6475
|
+
align-items: center;
|
|
6476
|
+
justify-content: center;
|
|
6477
|
+
width: 28px;
|
|
6478
|
+
height: 28px;
|
|
6479
|
+
padding: 0;
|
|
6480
|
+
border: 0;
|
|
6481
|
+
border-radius: 4px;
|
|
6482
|
+
background: transparent;
|
|
6483
|
+
color: var(--bs-primary-color);
|
|
6484
|
+
cursor: pointer;
|
|
6485
|
+
transition:
|
|
6486
|
+
background-color 0.12s ease,
|
|
6487
|
+
color 0.12s ease;
|
|
6488
|
+
}
|
|
6489
|
+
|
|
6490
|
+
._iconAction_1sdtt_144:hover {
|
|
6491
|
+
background: var(--vscode-toolbar-hoverBackground);
|
|
6492
|
+
color: var(--bs-body-color);
|
|
6493
|
+
}
|
|
6494
|
+
|
|
6495
|
+
._iconActionActive_1sdtt_166 {
|
|
6496
|
+
background: var(--vscode-toolbar-hoverBackground);
|
|
6497
|
+
color: var(--bs-body-color);
|
|
6498
|
+
}
|
|
6499
|
+
|
|
6500
|
+
._runButton_1sdtt_171 {
|
|
6501
|
+
flex: 0 0 auto;
|
|
6502
|
+
padding: 0.24rem 0.65rem;
|
|
6503
|
+
border: 1px solid var(--bs-border-color);
|
|
6504
|
+
border-radius: var(--bs-border-radius);
|
|
6505
|
+
background-color: var(--bs-secondary-bg);
|
|
6506
|
+
color: var(--bs-body-color);
|
|
6507
|
+
font-size: var(--inspect-font-size-small);
|
|
6508
|
+
font-weight: 600;
|
|
6509
|
+
cursor: pointer;
|
|
6510
|
+
}
|
|
6511
|
+
|
|
6512
|
+
._runButton_1sdtt_171:hover:not(:disabled) {
|
|
6513
|
+
background-color: var(--bs-tertiary-bg);
|
|
6514
|
+
}
|
|
6515
|
+
|
|
6516
|
+
._runButton_1sdtt_171:disabled {
|
|
6517
|
+
opacity: 0.55;
|
|
6518
|
+
cursor: default;
|
|
6519
|
+
}
|
|
6520
|
+
|
|
6521
|
+
._results_1sdtt_192 {
|
|
6522
|
+
flex: 1;
|
|
6523
|
+
min-height: 0;
|
|
6524
|
+
overflow-y: auto;
|
|
6525
|
+
padding: 0.5rem;
|
|
6526
|
+
display: flex;
|
|
6527
|
+
flex-direction: column;
|
|
6528
|
+
gap: 0.5rem;
|
|
6529
|
+
}
|
|
6530
|
+
|
|
6531
|
+
._sectionHeader_1sdtt_202 {
|
|
6532
|
+
display: flex;
|
|
6533
|
+
align-items: center;
|
|
6534
|
+
justify-content: space-between;
|
|
6535
|
+
gap: 0.5rem;
|
|
6536
|
+
font-size: var(--inspect-font-size-smallest);
|
|
6537
|
+
color: var(--bs-primary-color);
|
|
6538
|
+
font-weight: 600;
|
|
6539
|
+
text-transform: uppercase;
|
|
6540
|
+
letter-spacing: 0.05em;
|
|
6541
|
+
}
|
|
6542
|
+
|
|
6543
|
+
._resultCard_1sdtt_214 {
|
|
6544
|
+
background-color: var(--bs-body-bg);
|
|
6545
|
+
font-size: var(--inspect-font-size-small);
|
|
6546
|
+
display: flex;
|
|
6547
|
+
flex-direction: column;
|
|
6548
|
+
gap: 0.5rem;
|
|
6549
|
+
}
|
|
6550
|
+
|
|
6551
|
+
._matchCount_1sdtt_222 {
|
|
6552
|
+
font-weight: 600;
|
|
6553
|
+
color: var(--bs-primary-color);
|
|
6554
|
+
font-size: var(--inspect-font-size-smallest);
|
|
6555
|
+
}
|
|
6556
|
+
|
|
6557
|
+
._recentList_1sdtt_228 {
|
|
6558
|
+
margin: 0;
|
|
6559
|
+
padding: 0;
|
|
6560
|
+
list-style: none;
|
|
6561
|
+
}
|
|
6562
|
+
|
|
6563
|
+
._recentItem_1sdtt_234 {
|
|
6564
|
+
padding: 6px 10px;
|
|
6565
|
+
font-size: var(--inspect-font-size-small);
|
|
6566
|
+
color: var(--bs-body-color);
|
|
6567
|
+
cursor: pointer;
|
|
6568
|
+
white-space: nowrap;
|
|
6569
|
+
overflow: hidden;
|
|
6570
|
+
text-overflow: ellipsis;
|
|
6571
|
+
}
|
|
6572
|
+
|
|
6573
|
+
._recentItem_1sdtt_234:hover {
|
|
6574
|
+
background: var(--bs-primary);
|
|
6575
|
+
color: white;
|
|
6576
|
+
}
|
|
6577
|
+
|
|
6578
|
+
._recentEmpty_1sdtt_249 {
|
|
6579
|
+
padding: 0.6rem 0.5rem;
|
|
6580
|
+
color: var(--bs-primary-color);
|
|
6581
|
+
font-size: var(--inspect-font-size-small);
|
|
6582
|
+
text-align: center;
|
|
6583
|
+
}
|
|
6584
|
+
|
|
6585
|
+
._emptyState_1sdtt_256 {
|
|
6586
|
+
display: flex;
|
|
6587
|
+
flex-direction: column;
|
|
6588
|
+
align-items: center;
|
|
6589
|
+
justify-content: center;
|
|
6590
|
+
min-height: 8rem;
|
|
6591
|
+
color: var(--bs-primary-color);
|
|
6592
|
+
font-size: var(--inspect-font-size-small);
|
|
6593
|
+
text-align: center;
|
|
6594
|
+
}
|
|
6595
|
+
|
|
6596
|
+
._searchingText_1sdtt_267 {
|
|
6597
|
+
margin: 0;
|
|
6598
|
+
}
|
|
6599
|
+
|
|
6600
|
+
._searchingElapsed_1sdtt_271 {
|
|
6601
|
+
color: var(--bs-secondary-color);
|
|
6602
|
+
font-variant-numeric: tabular-nums;
|
|
6603
|
+
}
|
|
6604
|
+
._activityBar_10a5h_1 {
|
|
6605
|
+
width: 78px;
|
|
6606
|
+
border-right: solid 1px var(--bs-border-color);
|
|
6607
|
+
background-color: var(--bs-light);
|
|
6608
|
+
}
|
|
6609
|
+
|
|
6610
|
+
._activityHost_10a5h_7 {
|
|
6611
|
+
padding-top: 1rem;
|
|
6612
|
+
padding-bottom: 1rem;
|
|
6613
|
+
display: grid;
|
|
6614
|
+
justify-content: center;
|
|
6615
|
+
grid-auto-rows: max-content;
|
|
6616
|
+
row-gap: 1rem;
|
|
6617
|
+
}
|
|
6618
|
+
|
|
6619
|
+
._activity_10a5h_1 {
|
|
6620
|
+
display: flex;
|
|
6621
|
+
flex-direction: column;
|
|
6622
|
+
align-items: center;
|
|
6623
|
+
flex-shrink: 1;
|
|
6624
|
+
padding: 0.3rem;
|
|
6625
|
+
border-radius: var(--bs-border-radius);
|
|
6626
|
+
}
|
|
6627
|
+
|
|
6628
|
+
._activity_10a5h_1:hover {
|
|
6629
|
+
background-color: var(--bs-body-bg);
|
|
6630
|
+
cursor: pointer;
|
|
6631
|
+
}
|
|
6632
|
+
|
|
6633
|
+
._activity_10a5h_1._selected_10a5h_30 {
|
|
6634
|
+
background-color: var(--bs-primary-bg-subtle);
|
|
6635
|
+
}
|
|
6636
|
+
|
|
6637
|
+
._icon_10a5h_34 {
|
|
6638
|
+
font-size: 1.1rem;
|
|
6639
|
+
}
|
|
6640
|
+
|
|
6641
|
+
._label_10a5h_38 {
|
|
6642
|
+
font-size: 0.5rem;
|
|
6643
|
+
text-transform: uppercase;
|
|
6644
|
+
}
|
|
6645
|
+
._outerLayout_1j111_1 {
|
|
6646
|
+
display: flex;
|
|
6647
|
+
flex-direction: column;
|
|
6648
|
+
height: 100vh;
|
|
6649
|
+
width: 100vw;
|
|
6650
|
+
overflow: hidden;
|
|
6651
|
+
}
|
|
6652
|
+
|
|
6653
|
+
._layout_1j111_9 {
|
|
6654
|
+
display: flex;
|
|
6655
|
+
flex-direction: row;
|
|
6656
|
+
flex: 1;
|
|
6657
|
+
overflow: hidden;
|
|
6658
|
+
}
|
|
6659
|
+
|
|
6660
|
+
._content_1j111_16 {
|
|
6661
|
+
flex: 1;
|
|
6662
|
+
overflow: hidden;
|
|
6663
|
+
}
|
|
6664
|
+
|
|
6665
|
+
._content_1j111_16._scrolling_1j111_21 {
|
|
6666
|
+
overflow: auto;
|
|
6667
|
+
}
|
|
6668
|
+
._root_1jsd7_1 {
|
|
6669
|
+
position: relative;
|
|
6670
|
+
display: inline-flex;
|
|
6671
|
+
}
|
|
6672
|
+
|
|
6673
|
+
._button_1jsd7_6 {
|
|
6674
|
+
display: inline-flex;
|
|
6675
|
+
align-items: center;
|
|
6676
|
+
justify-content: center;
|
|
6677
|
+
background: none;
|
|
6678
|
+
border: none;
|
|
6679
|
+
padding: 0.25rem 0.4rem;
|
|
6680
|
+
color: inherit;
|
|
6681
|
+
cursor: pointer;
|
|
6682
|
+
border-radius: var(--bs-border-radius);
|
|
6683
|
+
line-height: 1;
|
|
6684
|
+
}
|
|
6685
|
+
|
|
6254
6686
|
._button_1jsd7_6:hover {
|
|
6255
6687
|
background-color: var(--bs-secondary-bg);
|
|
6256
6688
|
}
|
|
@@ -7469,6 +7901,12 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
7469
7901
|
._preCompact_seqs2_15 {
|
|
7470
7902
|
margin-bottom: 0;
|
|
7471
7903
|
}
|
|
7904
|
+
._notice_mpxkz_1 {
|
|
7905
|
+
margin-top: 0.25rem;
|
|
7906
|
+
font-size: var(--inspect-font-size-smaller);
|
|
7907
|
+
color: var(--bs-secondary-color);
|
|
7908
|
+
font-style: italic;
|
|
7909
|
+
}
|
|
7472
7910
|
._keyPairContainer_1u1d5_1 {
|
|
7473
7911
|
display: grid;
|
|
7474
7912
|
grid-template-columns: max-content auto;
|
|
@@ -8068,47 +8506,180 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8068
8506
|
overflow-wrap: break-word !important;
|
|
8069
8507
|
word-break: break-all !important;
|
|
8070
8508
|
}
|
|
8071
|
-
.
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
border-left:
|
|
8509
|
+
/* Shared tool-call block grammar. Colors come from the tool-block tokens,
|
|
8510
|
+
which are neutral by default and only colorized under the readable
|
|
8511
|
+
variant (the Event Colors toggle); the output well is the tool-output
|
|
8512
|
+
fill, hairlines/border are the subtle border token. */
|
|
8513
|
+
._block_16fhi_5 {
|
|
8514
|
+
border-left: var(--inspect-tool-block-edge);
|
|
8077
8515
|
}
|
|
8078
8516
|
|
|
8079
|
-
.
|
|
8080
|
-
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
border-bottom: solid 1px var(--bs-border-color);
|
|
8517
|
+
._standalone_16fhi_9 {
|
|
8518
|
+
border-top: 1px solid var(--bs-light-border-subtle);
|
|
8519
|
+
border-right: 1px solid var(--bs-light-border-subtle);
|
|
8520
|
+
border-bottom: 1px solid var(--bs-light-border-subtle);
|
|
8521
|
+
border-radius: var(--bs-border-radius);
|
|
8522
|
+
overflow: hidden;
|
|
8086
8523
|
}
|
|
8087
8524
|
|
|
8088
|
-
.
|
|
8089
|
-
|
|
8525
|
+
._header_16fhi_17 {
|
|
8526
|
+
display: flex;
|
|
8527
|
+
align-items: center;
|
|
8528
|
+
gap: 0.5rem;
|
|
8529
|
+
padding: 0.5rem 0.8rem 0 0.8rem;
|
|
8530
|
+
background-color: var(--inspect-tool-block-header-bg);
|
|
8531
|
+
}
|
|
8532
|
+
|
|
8533
|
+
._icon_16fhi_25 {
|
|
8534
|
+
flex: none;
|
|
8535
|
+
font-size: 13px;
|
|
8536
|
+
color: var(--inspect-tool-block-ink);
|
|
8537
|
+
}
|
|
8538
|
+
|
|
8539
|
+
._title_16fhi_31 {
|
|
8540
|
+
flex: none;
|
|
8541
|
+
font-family: var(--bs-font-monospace);
|
|
8542
|
+
font-size: var(--inspect-font-size-smaller);
|
|
8543
|
+
font-weight: 600;
|
|
8544
|
+
color: var(--inspect-tool-block-ink);
|
|
8545
|
+
}
|
|
8546
|
+
|
|
8547
|
+
._summary_16fhi_39 {
|
|
8548
|
+
flex: 1;
|
|
8549
|
+
min-width: 0;
|
|
8550
|
+
overflow: hidden;
|
|
8551
|
+
text-overflow: ellipsis;
|
|
8552
|
+
white-space: nowrap;
|
|
8553
|
+
font-family: var(--bs-font-monospace);
|
|
8554
|
+
font-size: var(--inspect-font-size-smaller);
|
|
8555
|
+
color: var(--bs-secondary-color);
|
|
8556
|
+
}
|
|
8557
|
+
|
|
8558
|
+
._pill_16fhi_50 {
|
|
8559
|
+
flex: none;
|
|
8560
|
+
/* Right-aligned even when there is no args summary to push it over. */
|
|
8561
|
+
margin-left: auto;
|
|
8562
|
+
font-size: var(--inspect-font-size-smallestest);
|
|
8563
|
+
font-weight: 500;
|
|
8564
|
+
line-height: 1.5;
|
|
8565
|
+
color: var(--bs-secondary-color);
|
|
8566
|
+
background-color: var(--bs-body-bg);
|
|
8567
|
+
border: 1px solid var(--bs-light-border-subtle);
|
|
8568
|
+
border-radius: 999px;
|
|
8569
|
+
padding: 1px 7px;
|
|
8570
|
+
}
|
|
8571
|
+
|
|
8572
|
+
._inputZone_16fhi_64 {
|
|
8573
|
+
background-color: var(--inspect-tool-block-input-bg);
|
|
8574
|
+
padding: 0 0.5rem 0.2rem 0.5rem;
|
|
8575
|
+
overflow-x: auto;
|
|
8576
|
+
}
|
|
8577
|
+
|
|
8578
|
+
._outputWell_16fhi_70 {
|
|
8579
|
+
border-top: 1px solid var(--bs-light-border-subtle);
|
|
8580
|
+
background-color: var(--inspect-tool-block-output-bg);
|
|
8581
|
+
padding: 12px 15px;
|
|
8582
|
+
font-size: var(--inspect-font-size-smaller);
|
|
8583
|
+
line-height: 1.6;
|
|
8584
|
+
}
|
|
8585
|
+
|
|
8586
|
+
/* The zones own their padding/fill; flatten the boxed surfaces that nested
|
|
8587
|
+
renderers (prism code blocks, tool-call-input call-outs, tool output wells)
|
|
8588
|
+
would otherwise stack inside them. !important outranks the readable
|
|
8589
|
+
variant's higher-specificity :root[data-theme-variant] surface rules. */
|
|
8590
|
+
._inputZone_16fhi_64 pre.tool-call-input,
|
|
8591
|
+
._inputZone_16fhi_64 div.tool-call-input {
|
|
8592
|
+
background-color: transparent !important;
|
|
8593
|
+
border: 0 !important;
|
|
8594
|
+
border-radius: 0 !important;
|
|
8595
|
+
padding: 0 !important;
|
|
8596
|
+
margin: 0 !important;
|
|
8597
|
+
}
|
|
8598
|
+
|
|
8599
|
+
._inputZone_16fhi_64 .tool-call-input pre[class*="language-"] {
|
|
8600
|
+
margin: 0 !important;
|
|
8601
|
+
padding: 0 !important;
|
|
8602
|
+
background-color: transparent !important;
|
|
8603
|
+
}
|
|
8604
|
+
|
|
8605
|
+
._outputWell_16fhi_70 .tool-output {
|
|
8606
|
+
background-color: transparent !important;
|
|
8607
|
+
border: 0 !important;
|
|
8608
|
+
border-radius: 0 !important;
|
|
8609
|
+
margin: 0 !important;
|
|
8610
|
+
padding: 0 !important;
|
|
8611
|
+
}
|
|
8612
|
+
._error_z9ujs_1 {
|
|
8613
|
+
color: var(--inspect-tool-error-color);
|
|
8614
|
+
background-color: var(--inspect-tool-error-bg);
|
|
8615
|
+
padding: 0.5em 0.7em;
|
|
8616
|
+
border-radius: var(--bs-border-radius);
|
|
8617
|
+
font-family: var(--bs-font-monospace);
|
|
8618
|
+
overflow-wrap: anywhere;
|
|
8619
|
+
margin: 0.5em 0;
|
|
8620
|
+
}
|
|
8621
|
+
|
|
8622
|
+
._type_z9ujs_11 {
|
|
8623
|
+
font-weight: 600;
|
|
8624
|
+
margin-bottom: 0.25em;
|
|
8625
|
+
text-transform: capitalize;
|
|
8090
8626
|
}
|
|
8091
8627
|
|
|
8092
|
-
.
|
|
8628
|
+
._message_z9ujs_17 {
|
|
8629
|
+
white-space: pre-wrap;
|
|
8630
|
+
}
|
|
8631
|
+
._todoList_1t8rx_1 {
|
|
8632
|
+
margin-top: 0.5em;
|
|
8633
|
+
margin-bottom: 0.5em;
|
|
8093
8634
|
display: grid;
|
|
8094
8635
|
grid-template-columns: auto 1fr;
|
|
8095
|
-
column-gap: 0.
|
|
8096
|
-
row-gap: 0.1em;
|
|
8097
|
-
margin-bottom: 1em;
|
|
8098
|
-
align-items: baseline;
|
|
8636
|
+
column-gap: 0.3em;
|
|
8099
8637
|
}
|
|
8100
8638
|
|
|
8101
|
-
.
|
|
8102
|
-
|
|
8639
|
+
._inProgress_1t8rx_9 {
|
|
8640
|
+
font-weight: bold;
|
|
8641
|
+
}
|
|
8642
|
+
._outputPre_7phrr_1 {
|
|
8643
|
+
padding: 0.5em;
|
|
8644
|
+
margin-top: 0.25em;
|
|
8645
|
+
margin-bottom: 0;
|
|
8103
8646
|
}
|
|
8104
8647
|
|
|
8105
|
-
.
|
|
8106
|
-
|
|
8107
|
-
font-weight: bold;
|
|
8648
|
+
._toolView_7phrr_7 {
|
|
8649
|
+
padding-top: 0 !important;
|
|
8108
8650
|
}
|
|
8109
8651
|
|
|
8110
|
-
.
|
|
8111
|
-
|
|
8652
|
+
._toolView_7phrr_7 pre {
|
|
8653
|
+
margin-bottom: 0;
|
|
8654
|
+
}
|
|
8655
|
+
|
|
8656
|
+
._toolView_7phrr_7 p > code {
|
|
8657
|
+
font-size: var(--inspect-text-size-small) !important;
|
|
8658
|
+
color: var(--bs-body-color) !important;
|
|
8659
|
+
}
|
|
8660
|
+
|
|
8661
|
+
._outputCode_7phrr_20 {
|
|
8662
|
+
font-size: var(--inspect-text-size-small) !important;
|
|
8663
|
+
overflow-wrap: anywhere !important;
|
|
8664
|
+
white-space: pre-wrap !important;
|
|
8665
|
+
}
|
|
8666
|
+
._tool_13xcg_1 {
|
|
8667
|
+
margin-bottom: 0.5em;
|
|
8668
|
+
}
|
|
8669
|
+
|
|
8670
|
+
._execOutput_13xcg_5 {
|
|
8671
|
+
margin: 0;
|
|
8672
|
+
padding: 0;
|
|
8673
|
+
background-color: transparent;
|
|
8674
|
+
border: 0;
|
|
8675
|
+
font-size: var(--inspect-font-size-smaller);
|
|
8676
|
+
line-height: 1.5;
|
|
8677
|
+
white-space: pre-wrap;
|
|
8678
|
+
overflow-wrap: anywhere;
|
|
8679
|
+
}
|
|
8680
|
+
|
|
8681
|
+
._execError_13xcg_16 {
|
|
8682
|
+
color: var(--inspect-tool-error-color);
|
|
8112
8683
|
}
|
|
8113
8684
|
._toolImage_1cvly_1 {
|
|
8114
8685
|
max-width: 800px;
|
|
@@ -8198,61 +8769,17 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8198
8769
|
display: grid;
|
|
8199
8770
|
row-gap: 0.5em;
|
|
8200
8771
|
}
|
|
8201
|
-
|
|
8202
|
-
|
|
8203
|
-
|
|
8204
|
-
|
|
8205
|
-
|
|
8206
|
-
|
|
8207
|
-
}
|
|
8208
|
-
|
|
8209
|
-
._inProgress_1t8rx_9 {
|
|
8210
|
-
font-weight: bold;
|
|
8211
|
-
}
|
|
8212
|
-
._outputPre_7phrr_1 {
|
|
8213
|
-
padding: 0.5em;
|
|
8214
|
-
margin-top: 0.25em;
|
|
8215
|
-
margin-bottom: 0;
|
|
8216
|
-
}
|
|
8217
|
-
|
|
8218
|
-
._toolView_7phrr_7 {
|
|
8219
|
-
padding-top: 0 !important;
|
|
8220
|
-
}
|
|
8221
|
-
|
|
8222
|
-
._toolView_7phrr_7 pre {
|
|
8223
|
-
margin-bottom: 0;
|
|
8224
|
-
}
|
|
8225
|
-
|
|
8226
|
-
._toolView_7phrr_7 p > code {
|
|
8227
|
-
font-size: var(--inspect-text-size-small) !important;
|
|
8228
|
-
color: var(--bs-body-color) !important;
|
|
8229
|
-
}
|
|
8230
|
-
|
|
8231
|
-
._outputCode_7phrr_20 {
|
|
8232
|
-
font-size: var(--inspect-text-size-small) !important;
|
|
8233
|
-
overflow-wrap: anywhere !important;
|
|
8234
|
-
white-space: pre-wrap !important;
|
|
8235
|
-
}
|
|
8236
|
-
._error_z9ujs_1 {
|
|
8237
|
-
color: var(--inspect-tool-error-color);
|
|
8238
|
-
background-color: var(--inspect-tool-error-bg);
|
|
8239
|
-
padding: 0.5em 0.7em;
|
|
8772
|
+
/* Custom tool views (answer, submit, todo lists) own their full rendering —
|
|
8773
|
+
they get the block frame (accent edge + container border) without the
|
|
8774
|
+
header row. */
|
|
8775
|
+
._custom_v2cay_4 {
|
|
8776
|
+
border: 1px solid var(--bs-light-border-subtle);
|
|
8777
|
+
border-left: var(--inspect-tool-block-edge);
|
|
8240
8778
|
border-radius: var(--bs-border-radius);
|
|
8241
|
-
|
|
8242
|
-
|
|
8243
|
-
margin: 0.5em 0;
|
|
8244
|
-
}
|
|
8245
|
-
|
|
8246
|
-
._type_z9ujs_11 {
|
|
8247
|
-
font-weight: 600;
|
|
8248
|
-
margin-bottom: 0.25em;
|
|
8249
|
-
text-transform: capitalize;
|
|
8250
|
-
}
|
|
8251
|
-
|
|
8252
|
-
._message_z9ujs_17 {
|
|
8253
|
-
white-space: pre-wrap;
|
|
8779
|
+
overflow: hidden;
|
|
8780
|
+
padding: 0.7rem;
|
|
8254
8781
|
}
|
|
8255
|
-
.
|
|
8782
|
+
._message_o8d3m_1 {
|
|
8256
8783
|
font-weight: 300;
|
|
8257
8784
|
margin-left: 0;
|
|
8258
8785
|
margin-right: 0;
|
|
@@ -8260,17 +8787,32 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8260
8787
|
min-width: 0;
|
|
8261
8788
|
}
|
|
8262
8789
|
|
|
8263
|
-
.
|
|
8790
|
+
._systemRole_o8d3m_9 {
|
|
8264
8791
|
opacity: 0.7;
|
|
8265
8792
|
}
|
|
8266
8793
|
|
|
8267
|
-
|
|
8794
|
+
/* Segmented assistant turn: prose bands and flush tool rows stack with
|
|
8795
|
+
hairline separators inside the turn container. */
|
|
8796
|
+
._turnSegments_o8d3m_15 > * + * {
|
|
8797
|
+
border-top: 1px solid var(--bs-light-border-subtle);
|
|
8798
|
+
}
|
|
8799
|
+
|
|
8800
|
+
/* The prose row keeps the assistant band; the left accent token is neutral
|
|
8801
|
+
by default and colorized under the readable variant (where the
|
|
8802
|
+
[data-message-role] rules re-apply the identical color). Extra vertical
|
|
8803
|
+
padding gives the prose rows more weight between the tool rows. */
|
|
8804
|
+
._proseSegment_o8d3m_23 {
|
|
8805
|
+
padding: 0.9rem 0.7rem;
|
|
8806
|
+
border-left: var(--inspect-turn-prose-edge);
|
|
8807
|
+
}
|
|
8808
|
+
|
|
8809
|
+
._timestamp_o8d3m_28 {
|
|
8268
8810
|
opacity: 0.5;
|
|
8269
8811
|
font-size: var(--inspect-font-size-smaller);
|
|
8270
8812
|
font-weight: normal;
|
|
8271
8813
|
}
|
|
8272
8814
|
|
|
8273
|
-
.
|
|
8815
|
+
._messageGrid_o8d3m_34 {
|
|
8274
8816
|
display: grid;
|
|
8275
8817
|
grid-template-columns: max-content max-content;
|
|
8276
8818
|
column-gap: 0.5em;
|
|
@@ -8280,45 +8822,45 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8280
8822
|
align-items: flex-start;
|
|
8281
8823
|
}
|
|
8282
8824
|
|
|
8283
|
-
.
|
|
8825
|
+
._toolMessageGrid_o8d3m_44 {
|
|
8284
8826
|
border-bottom: solid 1px var(--bs-border-color);
|
|
8285
8827
|
}
|
|
8286
8828
|
|
|
8287
|
-
.
|
|
8829
|
+
._headerEnd_o8d3m_48 {
|
|
8288
8830
|
display: inline-flex;
|
|
8289
8831
|
align-items: center;
|
|
8290
8832
|
gap: 0.5em;
|
|
8291
8833
|
flex: none;
|
|
8292
8834
|
}
|
|
8293
8835
|
|
|
8294
|
-
.
|
|
8836
|
+
._messageContents_o8d3m_55 {
|
|
8295
8837
|
margin-left: 0;
|
|
8296
8838
|
padding-bottom: 0;
|
|
8297
8839
|
}
|
|
8298
8840
|
|
|
8299
|
-
.
|
|
8841
|
+
._messageContents_o8d3m_55._indented_o8d3m_60 {
|
|
8300
8842
|
margin-left: 0rem;
|
|
8301
8843
|
}
|
|
8302
8844
|
|
|
8303
|
-
.
|
|
8845
|
+
._copyLink_o8d3m_64 {
|
|
8304
8846
|
opacity: 0;
|
|
8305
8847
|
padding-left: 0;
|
|
8306
8848
|
padding-right: 2em;
|
|
8307
8849
|
margin-left: 0.2rem;
|
|
8308
8850
|
}
|
|
8309
8851
|
|
|
8310
|
-
.
|
|
8852
|
+
._copyLink_o8d3m_64:hover {
|
|
8311
8853
|
opacity: 0.75;
|
|
8312
8854
|
}
|
|
8313
8855
|
|
|
8314
|
-
.
|
|
8856
|
+
._metadataLabel_o8d3m_75 {
|
|
8315
8857
|
padding-top: 1em;
|
|
8316
8858
|
}
|
|
8317
8859
|
|
|
8318
|
-
.
|
|
8860
|
+
._hover_o8d3m_79 ._copyLink_o8d3m_64 {
|
|
8319
8861
|
opacity: 0.75;
|
|
8320
8862
|
}
|
|
8321
|
-
.
|
|
8863
|
+
._grid_1mah3_1 {
|
|
8322
8864
|
display: grid;
|
|
8323
8865
|
grid-template-columns: minmax(0, 1fr);
|
|
8324
8866
|
/* row-gap spaces blocks within a turn (message → tool box); margin-bottom
|
|
@@ -8327,17 +8869,17 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8327
8869
|
margin-bottom: 0.75rem;
|
|
8328
8870
|
}
|
|
8329
8871
|
|
|
8330
|
-
.
|
|
8872
|
+
._number_1mah3_10 {
|
|
8331
8873
|
margin-top: 0.1em;
|
|
8332
8874
|
}
|
|
8333
8875
|
|
|
8334
|
-
.
|
|
8876
|
+
._user_1mah3_14 {
|
|
8335
8877
|
background-color: var(--bs-secondary-bg);
|
|
8336
8878
|
border-radius: var(--bs-border-radius);
|
|
8337
8879
|
border: solid 1px var(--bs-light-border-subtle);
|
|
8338
8880
|
}
|
|
8339
8881
|
|
|
8340
|
-
.
|
|
8882
|
+
._container_1mah3_20 {
|
|
8341
8883
|
padding-left: 0.7rem;
|
|
8342
8884
|
padding-right: 0.7rem;
|
|
8343
8885
|
padding-top: 0.5rem;
|
|
@@ -8345,85 +8887,78 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8345
8887
|
border-right: solid 1px var(--bs-light-border-subtle);
|
|
8346
8888
|
}
|
|
8347
8889
|
|
|
8348
|
-
.
|
|
8890
|
+
._first_1mah3_28 {
|
|
8349
8891
|
border-top-left-radius: var(--bs-border-radius);
|
|
8350
8892
|
border-top-right-radius: var(--bs-border-radius);
|
|
8351
8893
|
border-top: solid 1px var(--bs-light-border-subtle);
|
|
8352
8894
|
padding-top: 0.7rem;
|
|
8353
8895
|
}
|
|
8354
8896
|
|
|
8355
|
-
.
|
|
8897
|
+
._last_1mah3_35 {
|
|
8356
8898
|
border-bottom-left-radius: var(--bs-border-radius);
|
|
8357
8899
|
border-bottom-right-radius: var(--bs-border-radius);
|
|
8358
8900
|
border-bottom: solid 1px var(--bs-light-border-subtle);
|
|
8359
8901
|
padding-bottom: 0.7rem;
|
|
8360
8902
|
}
|
|
8361
8903
|
|
|
8362
|
-
.
|
|
8904
|
+
._label_1mah3_42 {
|
|
8363
8905
|
display: flex;
|
|
8364
8906
|
justify-content: flex-end;
|
|
8365
8907
|
padding-top: 0.7rem;
|
|
8366
8908
|
margin-left: 0.4em;
|
|
8367
8909
|
}
|
|
8368
8910
|
|
|
8369
|
-
.
|
|
8911
|
+
._highlight_1mah3_49 {
|
|
8370
8912
|
background-color: rgba(var(--bs-info-rgb), 0.12);
|
|
8371
8913
|
}
|
|
8372
8914
|
|
|
8373
|
-
/*
|
|
8374
|
-
|
|
8375
|
-
|
|
8376
|
-
.
|
|
8915
|
+
/* Assistant turn with server-side tool calls: one seamless container — the
|
|
8916
|
+
prose band and flush tool rows inside supply their own left edges, so the
|
|
8917
|
+
frame itself has no left border. */
|
|
8918
|
+
._turnContainer_1mah3_56 {
|
|
8919
|
+
border: 1px solid var(--bs-light-border-subtle);
|
|
8920
|
+
border-left: none;
|
|
8921
|
+
border-radius: var(--bs-border-radius);
|
|
8922
|
+
overflow: hidden;
|
|
8923
|
+
}
|
|
8924
|
+
|
|
8925
|
+
/* Self-contained box (used when tool calls are un-embedded) so the assistant
|
|
8926
|
+
message and each tool call read as separate cards rather than one connected
|
|
8927
|
+
band. */
|
|
8928
|
+
._box_1mah3_66 {
|
|
8377
8929
|
position: relative;
|
|
8378
8930
|
border: solid 1px var(--bs-light-border-subtle);
|
|
8379
8931
|
border-radius: var(--bs-border-radius);
|
|
8380
8932
|
padding: 0.7rem;
|
|
8381
8933
|
}
|
|
8382
8934
|
|
|
8383
|
-
/*
|
|
8384
|
-
|
|
8385
|
-
|
|
8386
|
-
._attachedGroup_qa1cd_66 {
|
|
8387
|
-
display: flex;
|
|
8388
|
-
flex-direction: column;
|
|
8389
|
-
}
|
|
8390
|
-
|
|
8391
|
-
._attachedBottom_qa1cd_71 {
|
|
8392
|
-
border-bottom-left-radius: 0;
|
|
8393
|
-
border-bottom-right-radius: 0;
|
|
8394
|
-
/* Drop the divider so the call/output pair reads as one seamless card —
|
|
8395
|
-
only the background color shifts (blue call → gray output). */
|
|
8396
|
-
border-bottom: 0;
|
|
8397
|
-
}
|
|
8398
|
-
|
|
8399
|
-
._attachedTop_qa1cd_79 {
|
|
8400
|
-
border-top-left-radius: 0;
|
|
8401
|
-
border-top-right-radius: 0;
|
|
8402
|
-
border-top: 0;
|
|
8935
|
+
/* Tool blocks carry their own frame; the wrapper only anchors the chip. */
|
|
8936
|
+
._toolPart_1mah3_74 {
|
|
8937
|
+
position: relative;
|
|
8403
8938
|
}
|
|
8404
8939
|
|
|
8405
8940
|
/* Tool-call number chip, pinned to the top-right of its box to mirror the
|
|
8406
8941
|
position chip on a message's role line. */
|
|
8407
|
-
.
|
|
8942
|
+
._toolLabel_1mah3_80 {
|
|
8408
8943
|
position: absolute;
|
|
8409
|
-
top: 0.
|
|
8944
|
+
top: 0.45rem;
|
|
8410
8945
|
right: 0.7rem;
|
|
8411
8946
|
z-index: 1;
|
|
8412
8947
|
}
|
|
8413
8948
|
|
|
8414
|
-
.
|
|
8949
|
+
._bottomMargin_1mah3_87 {
|
|
8415
8950
|
margin-bottom: 0.75rem;
|
|
8416
8951
|
}
|
|
8417
8952
|
|
|
8418
|
-
.
|
|
8953
|
+
._codeCompact_1mah3_91 {
|
|
8419
8954
|
/* styles for compact code display */
|
|
8420
8955
|
}
|
|
8421
8956
|
|
|
8422
|
-
.
|
|
8957
|
+
._simple_1mah3_95 {
|
|
8423
8958
|
/* styles for simple display mode */
|
|
8424
8959
|
}
|
|
8425
|
-
.
|
|
8426
|
-
.
|
|
8960
|
+
._badge_15iyu_1,
|
|
8961
|
+
._inline_15iyu_2 {
|
|
8427
8962
|
display: inline-flex;
|
|
8428
8963
|
align-items: center;
|
|
8429
8964
|
font-family: var(
|
|
@@ -8441,18 +8976,22 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8441
8976
|
background: var(--inspect-msg-label-bg);
|
|
8442
8977
|
border: 1px solid var(--inspect-msg-label-border);
|
|
8443
8978
|
color: var(--inspect-msg-label-text);
|
|
8444
|
-
cursor: pointer;
|
|
8445
8979
|
transition: background 0.12s ease;
|
|
8446
8980
|
}
|
|
8447
8981
|
|
|
8448
|
-
.
|
|
8982
|
+
/* Pointer + hover only when the chip actually activates something. */
|
|
8983
|
+
._interactive_15iyu_24 {
|
|
8984
|
+
cursor: pointer;
|
|
8985
|
+
}
|
|
8986
|
+
|
|
8987
|
+
._badge_15iyu_1 {
|
|
8449
8988
|
flex: none;
|
|
8450
8989
|
padding: 3px 8px;
|
|
8451
8990
|
border-radius: 6px;
|
|
8452
8991
|
user-select: none;
|
|
8453
8992
|
}
|
|
8454
8993
|
|
|
8455
|
-
.
|
|
8994
|
+
._inline_15iyu_2 {
|
|
8456
8995
|
padding: 1px 6px;
|
|
8457
8996
|
border-radius: 5px;
|
|
8458
8997
|
white-space: nowrap;
|
|
@@ -8460,8 +8999,7 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8460
8999
|
vertical-align: baseline;
|
|
8461
9000
|
}
|
|
8462
9001
|
|
|
8463
|
-
.
|
|
8464
|
-
._inline_10sr6_2:hover {
|
|
9002
|
+
._interactive_15iyu_24:hover {
|
|
8465
9003
|
background: var(--inspect-msg-label-bg-hover);
|
|
8466
9004
|
}
|
|
8467
9005
|
._bar_pg4l8_1 {
|
|
@@ -8704,7 +9242,7 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8704
9242
|
background-color: var(--bs-primary);
|
|
8705
9243
|
filter: brightness(1.05);
|
|
8706
9244
|
}
|
|
8707
|
-
.
|
|
9245
|
+
._stickyWrapper_1rqn8_1 {
|
|
8708
9246
|
position: sticky;
|
|
8709
9247
|
top: var(--inspect-event-panel-sticky-top, 0px);
|
|
8710
9248
|
/* Full-bleed: cancel the parent card's padding so the sticky bar
|
|
@@ -8718,43 +9256,43 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8718
9256
|
border-bottom: solid 1px transparent;
|
|
8719
9257
|
}
|
|
8720
9258
|
|
|
8721
|
-
.
|
|
9259
|
+
._stickyWrapper_1rqn8_1[data-useStickyObserver-stuck] {
|
|
8722
9260
|
background-color: var(--bs-light);
|
|
8723
9261
|
border-bottom-color: var(--bs-light-border-subtle);
|
|
8724
9262
|
}
|
|
8725
9263
|
|
|
8726
|
-
.
|
|
9264
|
+
._label_1rqn8_20 {
|
|
8727
9265
|
margin-right: 0.2em;
|
|
8728
9266
|
justify-self: end;
|
|
8729
9267
|
}
|
|
8730
9268
|
|
|
8731
|
-
.
|
|
9269
|
+
._title_1rqn8_25 {
|
|
8732
9270
|
min-width: 0;
|
|
8733
9271
|
line-height: 1.6;
|
|
8734
9272
|
}
|
|
8735
9273
|
|
|
8736
|
-
.
|
|
9274
|
+
._titleExtra_1rqn8_30 {
|
|
8737
9275
|
display: inline-flex;
|
|
8738
9276
|
align-items: center;
|
|
8739
9277
|
vertical-align: middle;
|
|
8740
9278
|
margin-left: 0.5em;
|
|
8741
9279
|
}
|
|
8742
9280
|
|
|
8743
|
-
.
|
|
9281
|
+
._navs_1rqn8_37 {
|
|
8744
9282
|
display: flex;
|
|
8745
9283
|
align-items: baseline;
|
|
8746
9284
|
justify-content: flex-end;
|
|
8747
9285
|
min-width: 0;
|
|
8748
9286
|
}
|
|
8749
9287
|
|
|
8750
|
-
.
|
|
9288
|
+
._turnLabel_1rqn8_44 {
|
|
8751
9289
|
margin-left: 1rem;
|
|
8752
9290
|
margin-top: 0.2rem;
|
|
8753
9291
|
opacity: 0.5;
|
|
8754
9292
|
font-size: var(--inspect-font-size-smallest);
|
|
8755
9293
|
}
|
|
8756
9294
|
|
|
8757
|
-
.
|
|
9295
|
+
._card_1rqn8_51 {
|
|
8758
9296
|
position: relative;
|
|
8759
9297
|
background-color: var(--bs-body-bg);
|
|
8760
9298
|
padding: 0.625rem;
|
|
@@ -8762,20 +9300,20 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8762
9300
|
border-radius: var(--bs-border-radius);
|
|
8763
9301
|
}
|
|
8764
9302
|
|
|
8765
|
-
.
|
|
9303
|
+
._cardContent_1rqn8_59 {
|
|
8766
9304
|
padding: 0;
|
|
8767
9305
|
display: inherit;
|
|
8768
9306
|
}
|
|
8769
9307
|
|
|
8770
|
-
.
|
|
9308
|
+
._cardContent_1rqn8_59._hidden_1rqn8_64 {
|
|
8771
9309
|
display: none;
|
|
8772
9310
|
}
|
|
8773
9311
|
|
|
8774
|
-
.
|
|
9312
|
+
._hidden_1rqn8_64 {
|
|
8775
9313
|
display: none;
|
|
8776
9314
|
}
|
|
8777
9315
|
|
|
8778
|
-
.
|
|
9316
|
+
._copyLink_1rqn8_72 {
|
|
8779
9317
|
font-size: 1.2em;
|
|
8780
9318
|
opacity: 0;
|
|
8781
9319
|
padding-left: 0.2em;
|
|
@@ -8785,23 +9323,21 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8785
9323
|
margin-left: 0.25em;
|
|
8786
9324
|
}
|
|
8787
9325
|
|
|
8788
|
-
.
|
|
9326
|
+
._hover_1rqn8_82 ._copyLink_1rqn8_72 {
|
|
8789
9327
|
opacity: 0.75;
|
|
8790
9328
|
}
|
|
8791
9329
|
|
|
8792
|
-
/*
|
|
8793
|
-
|
|
8794
|
-
|
|
8795
|
-
._eventLabel_2hmlz_89 {
|
|
8796
|
-
transform: translateY(-1px);
|
|
9330
|
+
/* Extra air between the turn label and the event-number pill. */
|
|
9331
|
+
._eventLabel_1rqn8_87 {
|
|
9332
|
+
margin-left: 0.5em;
|
|
8797
9333
|
}
|
|
8798
9334
|
|
|
8799
|
-
.
|
|
9335
|
+
._root_1rqn8_91 {
|
|
8800
9336
|
background-color: var(--bs-light-bg-subtle);
|
|
8801
9337
|
border-radius: unset;
|
|
8802
9338
|
}
|
|
8803
9339
|
|
|
8804
|
-
.
|
|
9340
|
+
._bottomDongle_1rqn8_96 {
|
|
8805
9341
|
display: block;
|
|
8806
9342
|
position: absolute;
|
|
8807
9343
|
margin: 0 auto;
|
|
@@ -8817,12 +9353,12 @@ a._citationLink_1ggvf_9:hover {
|
|
|
8817
9353
|
cursor: pointer;
|
|
8818
9354
|
}
|
|
8819
9355
|
|
|
8820
|
-
.
|
|
9356
|
+
._dongleIcon_1rqn8_112 {
|
|
8821
9357
|
padding-right: 0.3em;
|
|
8822
9358
|
}
|
|
8823
9359
|
|
|
8824
9360
|
@media print {
|
|
8825
|
-
.
|
|
9361
|
+
._card_1rqn8_51 {
|
|
8826
9362
|
break-inside: avoid;
|
|
8827
9363
|
}
|
|
8828
9364
|
}
|
|
@@ -9804,68 +10340,51 @@ a._citationLink_1ggvf_9:hover {
|
|
|
9804
10340
|
-webkit-user-select: none;
|
|
9805
10341
|
user-select: none;
|
|
9806
10342
|
}
|
|
9807
|
-
.
|
|
10343
|
+
._root_1t7mh_1 {
|
|
9808
10344
|
display: flex;
|
|
9809
|
-
flex-direction:
|
|
10345
|
+
flex-direction: row;
|
|
10346
|
+
align-items: stretch;
|
|
9810
10347
|
width: 100%;
|
|
9811
10348
|
flex: 1;
|
|
9812
10349
|
min-height: 0;
|
|
9813
10350
|
}
|
|
9814
10351
|
|
|
9815
|
-
.
|
|
10352
|
+
/* Timeline + content column. The rail/panel sit to its right as siblings, so
|
|
10353
|
+
they run full height from below the toolbar rather than below the swimlanes. */
|
|
10354
|
+
._main_1t7mh_12 {
|
|
10355
|
+
display: flex;
|
|
10356
|
+
flex-direction: column;
|
|
10357
|
+
flex: 1;
|
|
10358
|
+
min-width: 0;
|
|
10359
|
+
}
|
|
10360
|
+
|
|
10361
|
+
._container_1t7mh_19 {
|
|
9816
10362
|
display: grid;
|
|
9817
10363
|
width: 100%;
|
|
9818
|
-
grid-template-columns: var(--outline-width, 180px) 1px 1fr
|
|
9819
|
-
--right-pane-width,
|
|
9820
|
-
360px
|
|
9821
|
-
);
|
|
10364
|
+
grid-template-columns: var(--outline-width, 180px) 1px 1fr;
|
|
9822
10365
|
min-height: 100vh;
|
|
9823
10366
|
}
|
|
9824
10367
|
|
|
9825
10368
|
/* Embedded in another scroll container (e.g. a retry card): size to content
|
|
9826
10369
|
instead of reserving a full viewport. */
|
|
9827
|
-
.
|
|
10370
|
+
._container_1t7mh_19._embedded_1t7mh_28 {
|
|
9828
10371
|
min-height: 0;
|
|
9829
10372
|
}
|
|
9830
10373
|
|
|
9831
|
-
.
|
|
10374
|
+
._container_1t7mh_19 > * {
|
|
9832
10375
|
min-width: 0;
|
|
9833
10376
|
padding-bottom: 1rem;
|
|
9834
10377
|
}
|
|
9835
10378
|
|
|
9836
|
-
.
|
|
9837
|
-
grid-template-columns: 22px 1px 1fr 1px var(--right-pane-width, 360px);
|
|
9838
|
-
}
|
|
9839
|
-
|
|
9840
|
-
._container_1qk7q_9._noOutline_1qk7q_34 {
|
|
9841
|
-
grid-template-columns: 1fr 1px var(--right-pane-width, 360px);
|
|
9842
|
-
}
|
|
9843
|
-
|
|
9844
|
-
._container_1qk7q_9._rightPaneCollapsed_1qk7q_38 {
|
|
9845
|
-
grid-template-columns: var(--outline-width, 180px) 1px 1fr 1px 22px;
|
|
9846
|
-
}
|
|
9847
|
-
|
|
9848
|
-
._container_1qk7q_9._outlineCollapsed_1qk7q_30._rightPaneCollapsed_1qk7q_38 {
|
|
9849
|
-
grid-template-columns: 22px 1px 1fr 1px 22px;
|
|
9850
|
-
}
|
|
9851
|
-
|
|
9852
|
-
._container_1qk7q_9._noOutline_1qk7q_34._rightPaneCollapsed_1qk7q_38 {
|
|
9853
|
-
grid-template-columns: 1fr 1px 22px;
|
|
9854
|
-
}
|
|
9855
|
-
|
|
9856
|
-
._container_1qk7q_9._noRightPane_1qk7q_50 {
|
|
9857
|
-
grid-template-columns: var(--outline-width, 180px) 1px 1fr;
|
|
9858
|
-
}
|
|
9859
|
-
|
|
9860
|
-
._container_1qk7q_9._outlineCollapsed_1qk7q_30._noRightPane_1qk7q_50 {
|
|
10379
|
+
._container_1t7mh_19._outlineCollapsed_1t7mh_37 {
|
|
9861
10380
|
grid-template-columns: 22px 1px 1fr;
|
|
9862
10381
|
}
|
|
9863
10382
|
|
|
9864
|
-
.
|
|
10383
|
+
._container_1t7mh_19._noOutline_1t7mh_41 {
|
|
9865
10384
|
grid-template-columns: 1fr;
|
|
9866
10385
|
}
|
|
9867
10386
|
|
|
9868
|
-
.
|
|
10387
|
+
._outline_1t7mh_37 {
|
|
9869
10388
|
padding-left: 0.6rem;
|
|
9870
10389
|
/* Prevent stretching to the full grid-row height so that
|
|
9871
10390
|
position:sticky has room to travel within the cell. */
|
|
@@ -9875,13 +10394,13 @@ a._citationLink_1ggvf_9:hover {
|
|
|
9875
10394
|
/* Cap height to the visible area below the sticky offset and
|
|
9876
10395
|
scroll internally when the outline is taller.
|
|
9877
10396
|
Only when expanded — overflow clips the toggle button when collapsed. */
|
|
9878
|
-
.
|
|
10397
|
+
._container_1t7mh_19:not(._outlineCollapsed_1t7mh_37) > ._outline_1t7mh_37 {
|
|
9879
10398
|
max-height: calc(var(--scroller-height, 100vh) - var(--outline-top, 0px));
|
|
9880
10399
|
overflow-y: auto;
|
|
9881
10400
|
scrollbar-width: thin;
|
|
9882
10401
|
}
|
|
9883
10402
|
|
|
9884
|
-
.
|
|
10403
|
+
._outlineToggle_1t7mh_61 {
|
|
9885
10404
|
all: unset;
|
|
9886
10405
|
cursor: pointer;
|
|
9887
10406
|
font-size: 0.8em;
|
|
@@ -9890,80 +10409,33 @@ a._citationLink_1ggvf_9:hover {
|
|
|
9890
10409
|
right: 0.2rem;
|
|
9891
10410
|
}
|
|
9892
10411
|
|
|
9893
|
-
.
|
|
10412
|
+
._outlineToggle_1t7mh_61[aria-disabled="true"] {
|
|
9894
10413
|
cursor: default;
|
|
9895
10414
|
opacity: 0.4;
|
|
9896
10415
|
}
|
|
9897
10416
|
|
|
9898
|
-
.
|
|
10417
|
+
._separator_1t7mh_75 {
|
|
9899
10418
|
background-color: var(--bs-border-color);
|
|
9900
10419
|
}
|
|
9901
10420
|
|
|
9902
|
-
.
|
|
9903
|
-
|
|
10421
|
+
._eventsList_1t7mh_79 {
|
|
10422
|
+
padding-bottom: 1rem;
|
|
9904
10423
|
}
|
|
9905
10424
|
|
|
9906
|
-
.
|
|
9907
|
-
|
|
9908
|
-
|
|
9909
|
-
align-
|
|
10425
|
+
._sidebarHeader_1t7mh_83 {
|
|
10426
|
+
display: flex;
|
|
10427
|
+
flex-direction: row;
|
|
10428
|
+
align-items: center;
|
|
10429
|
+
gap: 0.4em;
|
|
10430
|
+
margin-bottom: 0.3rem;
|
|
9910
10431
|
}
|
|
9911
10432
|
|
|
9912
|
-
.
|
|
9913
|
-
|
|
9914
|
-
|
|
9915
|
-
padding-right: 1.2rem;
|
|
9916
|
-
max-height: calc(var(--scroller-height, 100vh) - var(--outline-top, 0px));
|
|
9917
|
-
overflow-y: auto;
|
|
9918
|
-
scrollbar-width: thin;
|
|
10433
|
+
._sidebarHeaderIcon_1t7mh_91 {
|
|
10434
|
+
font-size: 0.9em;
|
|
10435
|
+
flex-shrink: 0;
|
|
9919
10436
|
}
|
|
9920
10437
|
|
|
9921
|
-
.
|
|
9922
|
-
position: absolute;
|
|
9923
|
-
left: -3px;
|
|
9924
|
-
top: 0;
|
|
9925
|
-
bottom: 0;
|
|
9926
|
-
width: 6px;
|
|
9927
|
-
cursor: col-resize;
|
|
9928
|
-
touch-action: none;
|
|
9929
|
-
user-select: none;
|
|
9930
|
-
z-index: 1;
|
|
9931
|
-
background-color: transparent;
|
|
9932
|
-
transition: background-color 120ms ease;
|
|
9933
|
-
}
|
|
9934
|
-
|
|
9935
|
-
._rightPaneResizer_1qk7q_115:hover,
|
|
9936
|
-
._rightPaneResizer_1qk7q_115:active {
|
|
9937
|
-
background-color: var(--bs-primary-border-subtle);
|
|
9938
|
-
}
|
|
9939
|
-
|
|
9940
|
-
._rightPaneToggle_1qk7q_134 {
|
|
9941
|
-
all: unset;
|
|
9942
|
-
cursor: pointer;
|
|
9943
|
-
font-size: 0.8em;
|
|
9944
|
-
position: absolute;
|
|
9945
|
-
top: 0.2rem;
|
|
9946
|
-
left: 0.2rem;
|
|
9947
|
-
}
|
|
9948
|
-
|
|
9949
|
-
._eventsList_1qk7q_143 {
|
|
9950
|
-
padding-bottom: 1rem;
|
|
9951
|
-
}
|
|
9952
|
-
|
|
9953
|
-
._sidebarHeader_1qk7q_147 {
|
|
9954
|
-
display: flex;
|
|
9955
|
-
flex-direction: row;
|
|
9956
|
-
align-items: center;
|
|
9957
|
-
gap: 0.4em;
|
|
9958
|
-
margin-bottom: 0.3rem;
|
|
9959
|
-
}
|
|
9960
|
-
|
|
9961
|
-
._sidebarHeaderIcon_1qk7q_155 {
|
|
9962
|
-
font-size: 0.9em;
|
|
9963
|
-
flex-shrink: 0;
|
|
9964
|
-
}
|
|
9965
|
-
|
|
9966
|
-
._sidebarHeaderTitle_1qk7q_160 {
|
|
10438
|
+
._sidebarHeaderTitle_1t7mh_96 {
|
|
9967
10439
|
flex: 1;
|
|
9968
10440
|
min-width: 0;
|
|
9969
10441
|
font-weight: normal;
|
|
@@ -9979,23 +10451,17 @@ a._citationLink_1ggvf_9:hover {
|
|
|
9979
10451
|
inside the anchor so it doesn't push surrounding content. z-index sits
|
|
9980
10452
|
above sibling sticky headers (e.g. SampleScansSidebar's scanner picker
|
|
9981
10453
|
at z-index: 2) so the close button paints on top. */
|
|
9982
|
-
.
|
|
10454
|
+
._sidebarHeaderCloseAnchor_1t7mh_112 {
|
|
9983
10455
|
position: sticky;
|
|
9984
10456
|
top: 0;
|
|
9985
10457
|
height: 0;
|
|
9986
10458
|
z-index: 3;
|
|
9987
10459
|
}
|
|
9988
10460
|
|
|
9989
|
-
/* In the right pane, extend the anchor into the parent's right padding so
|
|
9990
|
-
the button lines up with the existing visual position. */
|
|
9991
|
-
._rightPane_1qk7q_38 ._sidebarHeaderCloseAnchor_1qk7q_176 {
|
|
9992
|
-
margin-right: -1.2rem;
|
|
9993
|
-
}
|
|
9994
|
-
|
|
9995
10461
|
/* Center the close icon vertically with the rootHeader title that follows
|
|
9996
10462
|
in the scroll content. The title (text-size-smaller) sits at the top of
|
|
9997
10463
|
that content; this offset aligns the icon's visual center with the title's. */
|
|
9998
|
-
.
|
|
10464
|
+
._sidebarHeaderClose_1t7mh_112 {
|
|
9999
10465
|
all: unset;
|
|
10000
10466
|
cursor: pointer;
|
|
10001
10467
|
font-size: 0.9em;
|
|
@@ -10006,7 +10472,7 @@ a._citationLink_1ggvf_9:hover {
|
|
|
10006
10472
|
background-color: var(--bs-body-bg);
|
|
10007
10473
|
}
|
|
10008
10474
|
|
|
10009
|
-
.
|
|
10475
|
+
._sidebarHeaderClose_1t7mh_112:hover {
|
|
10010
10476
|
opacity: 0.7;
|
|
10011
10477
|
}
|
|
10012
10478
|
._headline_1l22a_1 {
|
|
@@ -10117,44 +10583,33 @@ a._citationLink_1ggvf_9:hover {
|
|
|
10117
10583
|
flex: none;
|
|
10118
10584
|
opacity: 0.85;
|
|
10119
10585
|
}
|
|
10120
|
-
.
|
|
10586
|
+
._panel_1us8t_1 {
|
|
10121
10587
|
margin: 0.2em 0;
|
|
10588
|
+
display: grid;
|
|
10589
|
+
grid-template-columns: max-content 1fr;
|
|
10590
|
+
column-gap: 1em;
|
|
10591
|
+
row-gap: 0.3em;
|
|
10592
|
+
align-items: baseline;
|
|
10122
10593
|
}
|
|
10123
10594
|
|
|
10124
|
-
.
|
|
10595
|
+
._rowValue_1us8t_10 {
|
|
10125
10596
|
display: flex;
|
|
10126
|
-
|
|
10127
|
-
|
|
10128
|
-
|
|
10129
|
-
._label_xm787_10 {
|
|
10130
|
-
font-weight: 600;
|
|
10131
|
-
min-width: 5em;
|
|
10132
|
-
}
|
|
10133
|
-
|
|
10134
|
-
._section_xm787_15 {
|
|
10135
|
-
margin-top: 0.5em;
|
|
10136
|
-
}
|
|
10137
|
-
|
|
10138
|
-
._sectionTitle_xm787_19 {
|
|
10139
|
-
font-weight: 600;
|
|
10140
|
-
}
|
|
10141
|
-
|
|
10142
|
-
._indented_xm787_23 {
|
|
10143
|
-
padding-left: 1.5em;
|
|
10597
|
+
flex-direction: column;
|
|
10598
|
+
gap: 0.1em;
|
|
10144
10599
|
}
|
|
10145
10600
|
|
|
10146
|
-
.
|
|
10601
|
+
._files_1us8t_16 {
|
|
10147
10602
|
display: flex;
|
|
10148
10603
|
flex-direction: column;
|
|
10149
10604
|
gap: 0.1em;
|
|
10150
10605
|
font-family: var(--bs-font-monospace);
|
|
10151
10606
|
}
|
|
10152
10607
|
|
|
10153
|
-
.
|
|
10608
|
+
._file_1us8t_16 {
|
|
10154
10609
|
overflow-wrap: anywhere;
|
|
10155
10610
|
}
|
|
10156
10611
|
|
|
10157
|
-
.
|
|
10612
|
+
._fileOverflow_1us8t_27 {
|
|
10158
10613
|
font-style: italic;
|
|
10159
10614
|
opacity: 0.7;
|
|
10160
10615
|
}
|
|
@@ -11044,65 +11499,39 @@ a._citationLink_1ggvf_9:hover {
|
|
|
11044
11499
|
._subtaskLabel_ac4z2_17 {
|
|
11045
11500
|
padding: 0 2em;
|
|
11046
11501
|
}
|
|
11047
|
-
.
|
|
11502
|
+
._summary_1mtn2_1 {
|
|
11048
11503
|
margin: 0.5em 0;
|
|
11049
11504
|
width: 100%;
|
|
11050
11505
|
}
|
|
11051
11506
|
|
|
11052
|
-
.
|
|
11507
|
+
._labeledToolCall_1mtn2_6 {
|
|
11053
11508
|
display: grid;
|
|
11054
11509
|
grid-template-columns: auto max-content;
|
|
11055
11510
|
row-gap: 0;
|
|
11056
11511
|
}
|
|
11057
11512
|
|
|
11058
|
-
.
|
|
11513
|
+
._label_1mtn2_6 {
|
|
11059
11514
|
display: flex;
|
|
11060
11515
|
justify-content: flex-end;
|
|
11061
11516
|
padding-top: 0.7rem;
|
|
11062
11517
|
margin-left: 0.4em;
|
|
11063
11518
|
}
|
|
11064
11519
|
|
|
11065
|
-
.
|
|
11520
|
+
._labeledToolContent_1mtn2_19 {
|
|
11066
11521
|
min-width: 0;
|
|
11067
11522
|
}
|
|
11068
11523
|
|
|
11069
|
-
|
|
11070
|
-
[data-message-kind] theme rules; here we supply the box structure). */
|
|
11071
|
-
._attachedGroup_8xr5q_25 {
|
|
11072
|
-
display: flex;
|
|
11073
|
-
flex-direction: column;
|
|
11074
|
-
}
|
|
11075
|
-
|
|
11076
|
-
._toolBox_8xr5q_30 {
|
|
11077
|
-
position: relative;
|
|
11078
|
-
border: 1px solid var(--bs-light-border-subtle);
|
|
11079
|
-
border-radius: var(--bs-border-radius);
|
|
11080
|
-
padding: 0.7rem;
|
|
11081
|
-
}
|
|
11082
|
-
|
|
11083
|
-
._attachedBottom_8xr5q_37 {
|
|
11084
|
-
border-bottom-left-radius: 0;
|
|
11085
|
-
border-bottom-right-radius: 0;
|
|
11086
|
-
border-bottom: 0;
|
|
11087
|
-
}
|
|
11088
|
-
|
|
11089
|
-
._attachedTop_8xr5q_43 {
|
|
11090
|
-
border-top-left-radius: 0;
|
|
11091
|
-
border-top-right-radius: 0;
|
|
11092
|
-
border-top: 0;
|
|
11093
|
-
}
|
|
11094
|
-
|
|
11095
|
-
._approvalWrap_8xr5q_49 {
|
|
11524
|
+
._approvalWrap_1mtn2_23 {
|
|
11096
11525
|
margin-top: 0.5rem;
|
|
11097
11526
|
}
|
|
11098
11527
|
|
|
11099
|
-
.
|
|
11528
|
+
._approval_1mtn2_23 {
|
|
11100
11529
|
border: none;
|
|
11101
11530
|
padding: 0;
|
|
11102
11531
|
margin-bottom: 0;
|
|
11103
11532
|
}
|
|
11104
11533
|
|
|
11105
|
-
.
|
|
11534
|
+
._progress_1mtn2_33 {
|
|
11106
11535
|
margin-left: 0;
|
|
11107
11536
|
}
|
|
11108
11537
|
._node_t3xlr_1 {
|
|
@@ -11388,58 +11817,30 @@ a._citationLink_1ggvf_9:hover {
|
|
|
11388
11817
|
font-weight: 400;
|
|
11389
11818
|
color: var(--bs-secondary-text-color);
|
|
11390
11819
|
}
|
|
11391
|
-
.
|
|
11820
|
+
._container_1jxiy_1 {
|
|
11392
11821
|
display: flex;
|
|
11393
11822
|
flex-direction: column;
|
|
11394
11823
|
padding: 0;
|
|
11395
11824
|
}
|
|
11396
11825
|
|
|
11397
|
-
.
|
|
11398
|
-
display: flex;
|
|
11399
|
-
align-items: center;
|
|
11400
|
-
justify-content: space-between;
|
|
11401
|
-
padding: 0.5rem;
|
|
11402
|
-
flex-shrink: 0;
|
|
11403
|
-
height: 39px;
|
|
11404
|
-
border-bottom: 1px solid var(--bs-border-color);
|
|
11405
|
-
background-color: var(--bs-light);
|
|
11406
|
-
}
|
|
11407
|
-
|
|
11408
|
-
._headerTitle_d31uu_18 {
|
|
11409
|
-
margin: 0;
|
|
11410
|
-
font-size: var(--inspect-font-size-smallest);
|
|
11411
|
-
color: var(--bs-body-color);
|
|
11412
|
-
text-transform: uppercase;
|
|
11413
|
-
font-weight: 400;
|
|
11414
|
-
}
|
|
11415
|
-
|
|
11416
|
-
._headerIcon_d31uu_26 {
|
|
11417
|
-
margin-right: 0.5em;
|
|
11418
|
-
}
|
|
11419
|
-
|
|
11420
|
-
._headerSecondary_d31uu_30 {
|
|
11421
|
-
font-size: var(--inspect-font-size-smallest);
|
|
11422
|
-
color: var(--bs-secondary-color);
|
|
11423
|
-
}
|
|
11424
|
-
|
|
11425
|
-
._content_d31uu_35 {
|
|
11826
|
+
._content_1jxiy_7 {
|
|
11426
11827
|
flex: 1;
|
|
11427
11828
|
overflow-y: auto;
|
|
11428
11829
|
}
|
|
11429
11830
|
|
|
11430
|
-
.
|
|
11831
|
+
._placeholder_1jxiy_12 {
|
|
11431
11832
|
color: var(--bs-secondary-color);
|
|
11432
11833
|
font-size: 0.875rem;
|
|
11433
11834
|
text-align: center;
|
|
11434
11835
|
margin-top: 2rem;
|
|
11435
11836
|
}
|
|
11436
11837
|
|
|
11437
|
-
.
|
|
11838
|
+
._textValue_1jxiy_19 {
|
|
11438
11839
|
font-family: var(--bs-font-monospace);
|
|
11439
11840
|
font-size: var(--inspect-font-size-smaller);
|
|
11440
11841
|
}
|
|
11441
11842
|
|
|
11442
|
-
.
|
|
11843
|
+
._panel_1jxiy_24 {
|
|
11443
11844
|
background-color: var(--bs-body-bg);
|
|
11444
11845
|
display: flex;
|
|
11445
11846
|
flex-direction: column;
|
|
@@ -11448,23 +11849,19 @@ a._citationLink_1ggvf_9:hover {
|
|
|
11448
11849
|
}
|
|
11449
11850
|
|
|
11450
11851
|
/* Make all form controls full width within the panel */
|
|
11451
|
-
.
|
|
11452
|
-
.
|
|
11453
|
-
.
|
|
11852
|
+
._panel_1jxiy_24 vscode-single-select,
|
|
11853
|
+
._panel_1jxiy_24 vscode-textfield,
|
|
11854
|
+
._panel_1jxiy_24 button {
|
|
11454
11855
|
width: 100% !important;
|
|
11455
11856
|
min-width: 0 !important;
|
|
11456
11857
|
max-width: 100% !important;
|
|
11457
11858
|
}
|
|
11458
11859
|
|
|
11459
|
-
.
|
|
11460
|
-
cursor: pointer;
|
|
11461
|
-
}
|
|
11462
|
-
|
|
11463
|
-
._idLabel_d31uu_73 {
|
|
11860
|
+
._idLabel_1jxiy_41 {
|
|
11464
11861
|
margin-right: 0.5em;
|
|
11465
11862
|
}
|
|
11466
11863
|
|
|
11467
|
-
.
|
|
11864
|
+
._saveStatusContainer_1jxiy_45 {
|
|
11468
11865
|
margin-top: auto;
|
|
11469
11866
|
padding: 0.25rem 0.5rem;
|
|
11470
11867
|
text-align: right;
|
|
@@ -11473,16 +11870,16 @@ a._citationLink_1ggvf_9:hover {
|
|
|
11473
11870
|
transition: opacity 300ms ease-in-out;
|
|
11474
11871
|
}
|
|
11475
11872
|
|
|
11476
|
-
.
|
|
11873
|
+
._saveStatusContainer_1jxiy_45._saveStatusHidden_1jxiy_54 {
|
|
11477
11874
|
opacity: 0;
|
|
11478
11875
|
}
|
|
11479
11876
|
|
|
11480
|
-
.
|
|
11877
|
+
._saveStatusContainer_1jxiy_45._saveStatusError_1jxiy_58 {
|
|
11481
11878
|
opacity: 1;
|
|
11482
11879
|
color: var(--bs-danger);
|
|
11483
11880
|
}
|
|
11484
11881
|
|
|
11485
|
-
.
|
|
11882
|
+
._saveStatus_1jxiy_45 {
|
|
11486
11883
|
font-size: var(--inspect-font-size-smallest);
|
|
11487
11884
|
color: var(--bs-secondary-color);
|
|
11488
11885
|
word-wrap: break-word;
|
|
@@ -11490,13 +11887,13 @@ a._citationLink_1ggvf_9:hover {
|
|
|
11490
11887
|
display: block;
|
|
11491
11888
|
}
|
|
11492
11889
|
|
|
11493
|
-
.
|
|
11890
|
+
._createError_1jxiy_71 {
|
|
11494
11891
|
color: var(--vscode-errorForeground);
|
|
11495
11892
|
font-size: var(--inspect-font-size-smallest);
|
|
11496
11893
|
margin-top: 0.25rem;
|
|
11497
11894
|
}
|
|
11498
11895
|
|
|
11499
|
-
.
|
|
11896
|
+
._headerActionButton_1jxiy_77 {
|
|
11500
11897
|
display: flex;
|
|
11501
11898
|
align-items: center;
|
|
11502
11899
|
justify-content: center;
|
|
@@ -11515,28 +11912,28 @@ a._citationLink_1ggvf_9:hover {
|
|
|
11515
11912
|
z-index: 10;
|
|
11516
11913
|
}
|
|
11517
11914
|
|
|
11518
|
-
.
|
|
11915
|
+
._headerActionButton_1jxiy_77:hover:not(:disabled) {
|
|
11519
11916
|
opacity: 1;
|
|
11520
11917
|
background: var(--vscode-toolbar-hoverBackground);
|
|
11521
11918
|
color: var(--vscode-errorForeground);
|
|
11522
11919
|
}
|
|
11523
11920
|
|
|
11524
|
-
.
|
|
11921
|
+
._headerActionButton_1jxiy_77:disabled {
|
|
11525
11922
|
opacity: 0.3;
|
|
11526
11923
|
cursor: default;
|
|
11527
11924
|
}
|
|
11528
|
-
.
|
|
11925
|
+
._infoBox_1jxiy_106 {
|
|
11529
11926
|
display: grid;
|
|
11530
11927
|
grid-template-columns: auto 1fr;
|
|
11531
11928
|
column-gap: 0.3rem;
|
|
11532
11929
|
}
|
|
11533
11930
|
|
|
11534
|
-
.
|
|
11931
|
+
._idField_1jxiy_112 {
|
|
11535
11932
|
display: grid;
|
|
11536
11933
|
grid-template-columns: auto 1fr;
|
|
11537
11934
|
}
|
|
11538
11935
|
|
|
11539
|
-
.
|
|
11936
|
+
._idValue_1jxiy_117 {
|
|
11540
11937
|
overflow-wrap: break-word;
|
|
11541
11938
|
word-break: break-all;
|
|
11542
11939
|
}
|
|
@@ -12512,325 +12909,7 @@ a._citationLink_1ggvf_9:hover {
|
|
|
12512
12909
|
min-height: 0;
|
|
12513
12910
|
overflow: auto;
|
|
12514
12911
|
}
|
|
12515
|
-
.
|
|
12516
|
-
display: flex;
|
|
12517
|
-
flex-direction: column;
|
|
12518
|
-
height: 100%;
|
|
12519
|
-
min-height: 0;
|
|
12520
|
-
}
|
|
12521
|
-
|
|
12522
|
-
._body_im29s_8 {
|
|
12523
|
-
flex: 1;
|
|
12524
|
-
min-height: 0;
|
|
12525
|
-
display: flex;
|
|
12526
|
-
flex-direction: column;
|
|
12527
|
-
}
|
|
12528
|
-
|
|
12529
|
-
._searchArea_im29s_15 {
|
|
12530
|
-
padding: 0.5rem;
|
|
12531
|
-
border-bottom: 1px solid var(--bs-border-color);
|
|
12532
|
-
display: flex;
|
|
12533
|
-
flex-direction: column;
|
|
12534
|
-
gap: 0.45rem;
|
|
12535
|
-
}
|
|
12536
|
-
|
|
12537
|
-
._inputShell_im29s_23 {
|
|
12538
|
-
display: flex;
|
|
12539
|
-
min-width: 0;
|
|
12540
|
-
}
|
|
12541
|
-
|
|
12542
|
-
._inputShell_im29s_23 vscode-textarea {
|
|
12543
|
-
display: block;
|
|
12544
|
-
width: 100%;
|
|
12545
|
-
}
|
|
12546
|
-
|
|
12547
|
-
._controlsRow_im29s_33 {
|
|
12548
|
-
display: flex;
|
|
12549
|
-
align-items: center;
|
|
12550
|
-
gap: 0.4rem;
|
|
12551
|
-
flex-wrap: wrap;
|
|
12552
|
-
}
|
|
12553
|
-
|
|
12554
|
-
._topRow_im29s_40 {
|
|
12555
|
-
display: flex;
|
|
12556
|
-
align-items: center;
|
|
12557
|
-
justify-content: space-between;
|
|
12558
|
-
gap: 0.5rem;
|
|
12559
|
-
}
|
|
12560
|
-
|
|
12561
|
-
._typeToggle_im29s_47 {
|
|
12562
|
-
display: flex;
|
|
12563
|
-
flex: 0 0 auto;
|
|
12564
|
-
}
|
|
12565
|
-
|
|
12566
|
-
._topActions_im29s_52 {
|
|
12567
|
-
display: flex;
|
|
12568
|
-
align-items: center;
|
|
12569
|
-
gap: 0.2rem;
|
|
12570
|
-
}
|
|
12571
|
-
|
|
12572
|
-
._textarea_im29s_58 {
|
|
12573
|
-
width: 100%;
|
|
12574
|
-
font-family: inherit;
|
|
12575
|
-
font-size: var(--inspect-font-size-small);
|
|
12576
|
-
color: var(--bs-body-color);
|
|
12577
|
-
}
|
|
12578
|
-
|
|
12579
|
-
._modeRow_im29s_65 {
|
|
12580
|
-
flex: 1 1 16rem;
|
|
12581
|
-
min-width: 0;
|
|
12582
|
-
min-height: 0;
|
|
12583
|
-
}
|
|
12584
|
-
|
|
12585
|
-
._modeControls_im29s_71 {
|
|
12586
|
-
display: flex;
|
|
12587
|
-
flex-wrap: wrap;
|
|
12588
|
-
gap: 0.3rem;
|
|
12589
|
-
}
|
|
12590
|
-
|
|
12591
|
-
._modeToggle_im29s_77 {
|
|
12592
|
-
display: flex;
|
|
12593
|
-
align-items: center;
|
|
12594
|
-
justify-content: center;
|
|
12595
|
-
padding: 0.2rem;
|
|
12596
|
-
border: 1px solid var(--bs-border-color);
|
|
12597
|
-
border-radius: var(--bs-border-radius);
|
|
12598
|
-
background: var(--bs-body-bg);
|
|
12599
|
-
color: var(--bs-secondary-color);
|
|
12600
|
-
cursor: pointer;
|
|
12601
|
-
font-size: 14px;
|
|
12602
|
-
line-height: 1;
|
|
12603
|
-
transition:
|
|
12604
|
-
border-color 0.12s ease,
|
|
12605
|
-
background-color 0.12s ease,
|
|
12606
|
-
color 0.12s ease;
|
|
12607
|
-
}
|
|
12608
|
-
|
|
12609
|
-
._modeToggle_im29s_77:hover {
|
|
12610
|
-
background-color: var(--bs-secondary-bg);
|
|
12611
|
-
color: var(--bs-body-color);
|
|
12612
|
-
}
|
|
12613
|
-
|
|
12614
|
-
._modeToggleActive_im29s_100 {
|
|
12615
|
-
background-color: var(--bs-secondary-bg);
|
|
12616
|
-
color: var(--bs-body-color);
|
|
12617
|
-
}
|
|
12618
|
-
|
|
12619
|
-
._modelPill_im29s_105 {
|
|
12620
|
-
display: flex;
|
|
12621
|
-
align-items: center;
|
|
12622
|
-
gap: 0.35rem;
|
|
12623
|
-
width: 100%;
|
|
12624
|
-
min-width: 0;
|
|
12625
|
-
padding: 0.15rem 0.45rem;
|
|
12626
|
-
border: 1px solid var(--bs-border-color);
|
|
12627
|
-
border-radius: var(--bs-border-radius);
|
|
12628
|
-
background-color: var(--bs-body-bg);
|
|
12629
|
-
transition: border-color 0.12s ease;
|
|
12630
|
-
}
|
|
12631
|
-
|
|
12632
|
-
._modelPill_im29s_105:focus-within {
|
|
12633
|
-
border-color: var(--vscode-focusBorder);
|
|
12634
|
-
}
|
|
12635
|
-
|
|
12636
|
-
._modelInputShell_im29s_122 {
|
|
12637
|
-
flex: 1;
|
|
12638
|
-
min-width: 0;
|
|
12639
|
-
}
|
|
12640
|
-
|
|
12641
|
-
._modelInput_im29s_122 {
|
|
12642
|
-
flex: 1;
|
|
12643
|
-
min-width: 0;
|
|
12644
|
-
font-family: inherit;
|
|
12645
|
-
font-size: var(--inspect-font-size-small);
|
|
12646
|
-
line-height: 1.4;
|
|
12647
|
-
padding: 0.05rem 0;
|
|
12648
|
-
border: 0;
|
|
12649
|
-
background: transparent;
|
|
12650
|
-
color: var(--bs-body-color);
|
|
12651
|
-
}
|
|
12652
|
-
|
|
12653
|
-
._modelInput_im29s_122:focus {
|
|
12654
|
-
outline: none;
|
|
12655
|
-
}
|
|
12656
|
-
|
|
12657
|
-
._iconAction_im29s_143 {
|
|
12658
|
-
display: flex;
|
|
12659
|
-
align-items: center;
|
|
12660
|
-
justify-content: center;
|
|
12661
|
-
width: 28px;
|
|
12662
|
-
height: 28px;
|
|
12663
|
-
padding: 0;
|
|
12664
|
-
border: 0;
|
|
12665
|
-
border-radius: 4px;
|
|
12666
|
-
background: transparent;
|
|
12667
|
-
color: var(--bs-primary-color);
|
|
12668
|
-
cursor: pointer;
|
|
12669
|
-
transition:
|
|
12670
|
-
background-color 0.12s ease,
|
|
12671
|
-
color 0.12s ease;
|
|
12672
|
-
}
|
|
12673
|
-
|
|
12674
|
-
._iconAction_im29s_143:hover {
|
|
12675
|
-
background: var(--vscode-toolbar-hoverBackground);
|
|
12676
|
-
color: var(--bs-body-color);
|
|
12677
|
-
}
|
|
12678
|
-
|
|
12679
|
-
._iconActionActive_im29s_165 {
|
|
12680
|
-
background: var(--vscode-toolbar-hoverBackground);
|
|
12681
|
-
color: var(--bs-body-color);
|
|
12682
|
-
}
|
|
12683
|
-
|
|
12684
|
-
._runButton_im29s_170 {
|
|
12685
|
-
flex: 0 0 auto;
|
|
12686
|
-
padding: 0.24rem 0.65rem;
|
|
12687
|
-
border: 1px solid var(--bs-border-color);
|
|
12688
|
-
border-radius: var(--bs-border-radius);
|
|
12689
|
-
background-color: var(--bs-secondary-bg);
|
|
12690
|
-
color: var(--bs-body-color);
|
|
12691
|
-
font-size: var(--inspect-font-size-small);
|
|
12692
|
-
font-weight: 600;
|
|
12693
|
-
cursor: pointer;
|
|
12694
|
-
}
|
|
12695
|
-
|
|
12696
|
-
._runButton_im29s_170:hover:not(:disabled) {
|
|
12697
|
-
background-color: var(--bs-tertiary-bg);
|
|
12698
|
-
}
|
|
12699
|
-
|
|
12700
|
-
._runButton_im29s_170:disabled {
|
|
12701
|
-
opacity: 0.55;
|
|
12702
|
-
cursor: default;
|
|
12703
|
-
}
|
|
12704
|
-
|
|
12705
|
-
._results_im29s_191 {
|
|
12706
|
-
flex: 1;
|
|
12707
|
-
min-height: 0;
|
|
12708
|
-
overflow-y: auto;
|
|
12709
|
-
padding: 0.5rem;
|
|
12710
|
-
display: flex;
|
|
12711
|
-
flex-direction: column;
|
|
12712
|
-
gap: 0.5rem;
|
|
12713
|
-
}
|
|
12714
|
-
|
|
12715
|
-
._sectionHeader_im29s_201 {
|
|
12716
|
-
display: flex;
|
|
12717
|
-
align-items: center;
|
|
12718
|
-
justify-content: space-between;
|
|
12719
|
-
gap: 0.5rem;
|
|
12720
|
-
font-size: var(--inspect-font-size-smallest);
|
|
12721
|
-
color: var(--bs-primary-color);
|
|
12722
|
-
font-weight: 600;
|
|
12723
|
-
text-transform: uppercase;
|
|
12724
|
-
letter-spacing: 0.05em;
|
|
12725
|
-
}
|
|
12726
|
-
|
|
12727
|
-
._resultCard_im29s_213 {
|
|
12728
|
-
background-color: var(--bs-body-bg);
|
|
12729
|
-
font-size: var(--inspect-font-size-small);
|
|
12730
|
-
display: flex;
|
|
12731
|
-
flex-direction: column;
|
|
12732
|
-
gap: 0.5rem;
|
|
12733
|
-
}
|
|
12734
|
-
|
|
12735
|
-
._matchCount_im29s_221 {
|
|
12736
|
-
font-weight: 600;
|
|
12737
|
-
color: var(--bs-primary-color);
|
|
12738
|
-
font-size: var(--inspect-font-size-smallest);
|
|
12739
|
-
}
|
|
12740
|
-
|
|
12741
|
-
._recentList_im29s_227 {
|
|
12742
|
-
margin: 0;
|
|
12743
|
-
padding: 0;
|
|
12744
|
-
list-style: none;
|
|
12745
|
-
}
|
|
12746
|
-
|
|
12747
|
-
._recentItem_im29s_233 {
|
|
12748
|
-
padding: 6px 10px;
|
|
12749
|
-
font-size: var(--inspect-font-size-small);
|
|
12750
|
-
color: var(--bs-body-color);
|
|
12751
|
-
cursor: pointer;
|
|
12752
|
-
white-space: nowrap;
|
|
12753
|
-
overflow: hidden;
|
|
12754
|
-
text-overflow: ellipsis;
|
|
12755
|
-
}
|
|
12756
|
-
|
|
12757
|
-
._recentItem_im29s_233:hover {
|
|
12758
|
-
background: var(--bs-primary);
|
|
12759
|
-
color: white;
|
|
12760
|
-
}
|
|
12761
|
-
|
|
12762
|
-
._recentEmpty_im29s_248 {
|
|
12763
|
-
padding: 0.6rem 0.5rem;
|
|
12764
|
-
color: var(--bs-primary-color);
|
|
12765
|
-
font-size: var(--inspect-font-size-small);
|
|
12766
|
-
text-align: center;
|
|
12767
|
-
}
|
|
12768
|
-
|
|
12769
|
-
._emptyState_im29s_255 {
|
|
12770
|
-
display: flex;
|
|
12771
|
-
flex-direction: column;
|
|
12772
|
-
align-items: center;
|
|
12773
|
-
justify-content: center;
|
|
12774
|
-
min-height: 8rem;
|
|
12775
|
-
color: var(--bs-primary-color);
|
|
12776
|
-
font-size: var(--inspect-font-size-small);
|
|
12777
|
-
text-align: center;
|
|
12778
|
-
}
|
|
12779
|
-
/* When the search split is active, the TabSet's tab bar and contents must
|
|
12780
|
-
have bounded heights so the inner VscodeSplitLayout can fill the available
|
|
12781
|
-
space. Without this, the Fragment-rendered ul + tab-content flow naturally
|
|
12782
|
-
and give the split no height to work with. */
|
|
12783
|
-
._tabContainer_1bhvk_5 {
|
|
12784
|
-
display: grid;
|
|
12785
|
-
grid-template-rows: max-content minmax(0, 1fr);
|
|
12786
|
-
height: 100%;
|
|
12787
|
-
min-height: 0;
|
|
12788
|
-
}
|
|
12789
|
-
|
|
12790
|
-
._tabContainer_1bhvk_5 > .tab-content {
|
|
12791
|
-
min-height: 0;
|
|
12792
|
-
display: flex;
|
|
12793
|
-
flex-direction: column;
|
|
12794
|
-
overflow: hidden;
|
|
12795
|
-
}
|
|
12796
|
-
|
|
12797
|
-
._tabContainer_1bhvk_5 > .tab-content > .tab-pane.active {
|
|
12798
|
-
flex: 1;
|
|
12799
|
-
min-height: 0;
|
|
12800
|
-
}
|
|
12801
|
-
|
|
12802
|
-
/* Inside a bounded TabPanel, the VscodeSplitLayout fills the space. The panel
|
|
12803
|
-
itself should contain overflow so content doesn't escape. */
|
|
12804
|
-
._tabWithSearchSplit_1bhvk_26 {
|
|
12805
|
-
overflow: hidden !important;
|
|
12806
|
-
height: 100%;
|
|
12807
|
-
min-height: 0;
|
|
12808
|
-
display: flex;
|
|
12809
|
-
flex-direction: column;
|
|
12810
|
-
}
|
|
12811
|
-
|
|
12812
|
-
._searchSplitLayout_1bhvk_34 {
|
|
12813
|
-
height: 100%;
|
|
12814
|
-
width: 100%;
|
|
12815
|
-
flex: 1;
|
|
12816
|
-
min-height: 0;
|
|
12817
|
-
}
|
|
12818
|
-
|
|
12819
|
-
._searchSplitStart_1bhvk_41 {
|
|
12820
|
-
height: 100%;
|
|
12821
|
-
overflow-y: auto;
|
|
12822
|
-
min-height: 0;
|
|
12823
|
-
}
|
|
12824
|
-
|
|
12825
|
-
._searchSidebar_1bhvk_47 {
|
|
12826
|
-
display: flex;
|
|
12827
|
-
flex-direction: column;
|
|
12828
|
-
height: 100%;
|
|
12829
|
-
min-height: 0;
|
|
12830
|
-
background-color: var(--bs-body-bg);
|
|
12831
|
-
}
|
|
12832
|
-
|
|
12833
|
-
.nav._tabs_1bhvk_55 {
|
|
12912
|
+
.nav._tabs_1oukw_1 {
|
|
12834
12913
|
border-bottom: solid 1px var(--bs-border-color);
|
|
12835
12914
|
padding-bottom: 0.25rem;
|
|
12836
12915
|
padding-top: 0.5rem;
|
|
@@ -12842,55 +12921,54 @@ a._citationLink_1ggvf_9:hover {
|
|
|
12842
12921
|
background-color: var(--bs-body-bg);
|
|
12843
12922
|
}
|
|
12844
12923
|
|
|
12845
|
-
.nav.
|
|
12924
|
+
.nav._tabs_1oukw_1 .nav-link {
|
|
12846
12925
|
padding: 0.3rem 0.5rem;
|
|
12847
12926
|
font-size: var(--inspect-font-size-smallest) !important;
|
|
12848
12927
|
}
|
|
12849
12928
|
|
|
12850
|
-
.
|
|
12929
|
+
._chatList_1oukw_18 {
|
|
12851
12930
|
flex: 1;
|
|
12852
12931
|
min-width: 0;
|
|
12853
12932
|
padding: 0.5rem;
|
|
12854
12933
|
}
|
|
12855
12934
|
|
|
12856
|
-
.
|
|
12935
|
+
._metadata_1oukw_24 {
|
|
12857
12936
|
padding-bottom: 50px;
|
|
12858
12937
|
}
|
|
12859
12938
|
|
|
12860
|
-
.
|
|
12939
|
+
._scrollable_1oukw_28 {
|
|
12861
12940
|
overflow-y: auto;
|
|
12862
12941
|
min-height: 0;
|
|
12863
12942
|
height: 100%;
|
|
12864
12943
|
}
|
|
12865
12944
|
|
|
12866
|
-
.
|
|
12945
|
+
._eventsTab_1oukw_34 {
|
|
12867
12946
|
display: flex;
|
|
12868
12947
|
/* Override TabSet's overflow-y: clip so position: sticky works for
|
|
12869
12948
|
turn-label headers inside the transcript virtual list. */
|
|
12870
12949
|
overflow-y: visible;
|
|
12871
12950
|
}
|
|
12872
12951
|
|
|
12873
|
-
.
|
|
12952
|
+
._tabTool_1oukw_41 {
|
|
12874
12953
|
font-size: var(--inspect-font-size-smallestest) !important;
|
|
12875
12954
|
padding: 0.1rem 0.4rem !important;
|
|
12876
12955
|
}
|
|
12877
12956
|
|
|
12878
|
-
.
|
|
12879
|
-
|
|
12957
|
+
._railHost_1oukw_46 {
|
|
12958
|
+
display: flex;
|
|
12959
|
+
flex-direction: row;
|
|
12960
|
+
align-items: stretch;
|
|
12880
12961
|
width: 100%;
|
|
12881
|
-
|
|
12882
|
-
|
|
12883
|
-
._splitStart_1bhvk_105 {
|
|
12962
|
+
min-width: 0;
|
|
12884
12963
|
height: 100%;
|
|
12885
|
-
|
|
12964
|
+
min-height: 0;
|
|
12886
12965
|
}
|
|
12887
12966
|
|
|
12888
|
-
.
|
|
12889
|
-
|
|
12890
|
-
|
|
12891
|
-
|
|
12892
|
-
|
|
12893
|
-
overflow-y: auto;
|
|
12967
|
+
._railContent_1oukw_56 {
|
|
12968
|
+
flex: 1;
|
|
12969
|
+
width: 100%;
|
|
12970
|
+
min-width: 0;
|
|
12971
|
+
min-height: 0;
|
|
12894
12972
|
}
|
|
12895
12973
|
._grid_1ml4j_1 {
|
|
12896
12974
|
display: grid;
|