@meridianlabs/inspect-scout-viewer 0.4.6 → 0.4.8
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/App.d.ts +1 -0
- package/lib/AppRouter.d.ts +2 -0
- package/lib/api/api.d.ts +13 -1
- package/lib/app/components/ActivityBarLayout.d.ts +2 -0
- package/lib/app/components/Chip.d.ts +12 -0
- package/lib/app/components/ChipGroup.d.ts +7 -0
- package/lib/app/components/NextPreviousNav.d.ts +11 -0
- package/lib/app/components/ProjectBar.d.ts +7 -0
- package/lib/app/components/ScansNavbar.d.ts +1 -1
- package/lib/app/components/ScoreValue.d.ts +9 -0
- package/lib/app/components/ValidationResult.d.ts +3 -0
- package/lib/app/hooks/useFilterConditions.d.ts +6 -0
- package/lib/app/project/ProjectPanel.d.ts +7 -0
- package/lib/app/project/SettingsContent.d.ts +7 -0
- package/lib/app/project/components/FormFields.d.ts +67 -0
- package/lib/app/project/configUtils.d.ts +30 -0
- package/lib/app/project/hooks/useNestedConfig.d.ts +28 -0
- package/lib/app/runScan/ActiveScanView.d.ts +6 -0
- package/lib/app/runScan/DefineScannerSection.d.ts +6 -0
- package/lib/app/runScan/RunScanPanel.d.ts +2 -0
- package/lib/app/scan/scanners/dataframe/DataframeGridApiContext.d.ts +7 -0
- package/lib/app/scan/scanners/dataframe/ScannerDataframeCSVButtons.d.ts +9 -0
- package/lib/app/scannerResult/result/ResultBody.d.ts +2 -2
- package/lib/app/scannerResult/result/ResultPanel.d.ts +3 -2
- package/lib/app/scans/ScansGrid.d.ts +2 -2
- package/lib/app/server/useActiveScan.d.ts +3 -0
- package/lib/app/server/useActiveScans.d.ts +3 -0
- package/lib/app/server/useAdjacentTranscriptIds.d.ts +10 -0
- package/lib/app/server/useCode.d.ts +4 -0
- package/lib/app/server/useConfig.d.ts +1 -0
- package/lib/app/server/useProjectConfig.d.ts +30 -0
- package/lib/app/server/useScan.d.ts +4 -0
- package/lib/app/server/useScanDataframe.d.ts +9 -0
- package/lib/app/server/useScanDataframeInput.d.ts +10 -0
- package/lib/app/server/useScans.d.ts +3 -0
- package/lib/app/server/{useServerScansInfinite.d.ts → useScansInfinite.d.ts} +1 -1
- package/lib/app/server/useServerTranscriptsInfinite.d.ts +9 -2
- package/lib/app/server/useStartScan.d.ts +3 -0
- package/lib/app/server/useTranscript.d.ts +9 -0
- package/lib/app/server/useTranscriptsColumnValues.d.ts +11 -0
- package/lib/app/transcript/TranscriptBody.d.ts +6 -1
- package/lib/app/transcript/TranscriptFilterPopover.d.ts +7 -0
- package/lib/app/transcript/TranscriptNav.d.ts +10 -0
- package/lib/app/transcript/hooks/useTranscriptColumnFilter.d.ts +11 -0
- package/lib/app/transcript/hooks/useTranscriptNavigation.d.ts +12 -0
- package/lib/app/transcripts/TranscriptColumnsButton.d.ts +6 -0
- package/lib/app/transcripts/TranscriptColumnsPopover.d.ts +7 -0
- package/lib/app/transcripts/TranscriptFilterBar.d.ts +7 -0
- package/lib/app/transcripts/TranscriptsGrid.d.ts +5 -0
- package/lib/app/transcripts/columnFilter/ColumnFilterButton.d.ts +6 -0
- package/lib/app/transcripts/columnFilter/ColumnFilterControl.d.ts +16 -0
- package/lib/app/transcripts/columnFilter/ColumnFilterEditor.d.ts +31 -0
- package/lib/app/transcripts/columnFilter/DurationInput.d.ts +9 -0
- package/lib/app/transcripts/columnFilter/index.d.ts +7 -0
- package/lib/app/transcripts/columnFilter/useAddFilterPopover.d.ts +34 -0
- package/lib/app/transcripts/columnFilter/useColumnFilter.d.ts +27 -0
- package/lib/app/transcripts/columnFilter/useColumnFilterPopover.d.ts +25 -0
- package/lib/app/transcripts/columnSizing/defaultStrategy.d.ts +2 -0
- package/lib/app/transcripts/columnSizing/fitContentStrategy.d.ts +2 -0
- package/lib/app/transcripts/columnSizing/index.d.ts +4 -0
- package/lib/app/transcripts/columnSizing/strategies.d.ts +10 -0
- package/lib/app/transcripts/columnSizing/types.d.ts +47 -0
- package/lib/app/transcripts/columnSizing/useColumnSizing.d.ts +34 -0
- package/lib/app/transcripts/columnSizing/utils.d.ts +14 -0
- package/lib/app/transcripts/columns.d.ts +37 -0
- package/lib/app/transcripts/constants.d.ts +35 -0
- package/lib/app/types.d.ts +1 -0
- package/lib/components/AutocompleteInput.d.ts +19 -0
- package/lib/components/FindBand.d.ts +6 -0
- package/lib/components/Modal.d.ts +10 -0
- package/lib/components/ToolButton.d.ts +2 -1
- package/lib/components/ToolDropdownButton.d.ts +3 -0
- package/lib/components/content/DisplayModeContext.d.ts +9 -0
- package/lib/components/icons.d.ts +4 -0
- package/lib/components/transcript/ScoreEventView.d.ts +0 -1
- package/lib/components/transcript/TranscriptViewNodes.d.ts +13 -0
- package/lib/components/transcript/outline/OutlineRow.d.ts +1 -0
- package/lib/components/transcript/types.d.ts +2 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +30097 -12545
- package/lib/index.js.map +1 -1
- package/lib/query/transcriptColumns.d.ts +1 -0
- package/lib/router/url.d.ts +3 -0
- package/lib/state/store.d.ts +23 -5
- package/lib/styles/index.css +1432 -267
- package/lib/types/api-types.d.ts +10 -1
- package/lib/types/generated.d.ts +1140 -37
- package/lib/utils/react-query.d.ts +1 -0
- package/package.json +2 -1
- package/lib/app/components/ToolButton.d.ts +0 -8
- package/lib/app/server/useServerScan.d.ts +0 -3
- package/lib/app/server/useServerScanDataframe.d.ts +0 -3
- package/lib/app/server/useServerScanDataframeInput.d.ts +0 -3
- package/lib/app/server/useServerScans.d.ts +0 -3
- package/lib/app/server/useServerTranscript.d.ts +0 -3
- package/lib/app/transcripts/ColumnFilterControl.d.ts +0 -11
package/lib/styles/index.css
CHANGED
|
@@ -177,6 +177,145 @@ pre[class*="language-"] {
|
|
|
177
177
|
/* Inspect Glass */
|
|
178
178
|
--inspect-glass-color: #000000;
|
|
179
179
|
--inspect-glass-opacity: 0.3;
|
|
180
|
+
|
|
181
|
+
/* VS Code Light Modern theme defaults (for non-VS Code context) */
|
|
182
|
+
/* Complete set of variables used by @vscode-elements/elements */
|
|
183
|
+
/* These are overridden by actual VS Code theme variables when running in VS Code */
|
|
184
|
+
|
|
185
|
+
/* Core colors */
|
|
186
|
+
--vscode-foreground: #3b3b3b;
|
|
187
|
+
--vscode-descriptionForeground: #717171;
|
|
188
|
+
--vscode-errorForeground: #f14c4c;
|
|
189
|
+
--vscode-icon-foreground: #424242;
|
|
190
|
+
--vscode-focusBorder: #0090f1;
|
|
191
|
+
--vscode-contrastBorder: transparent;
|
|
192
|
+
|
|
193
|
+
/* Font settings */
|
|
194
|
+
--vscode-font-family:
|
|
195
|
+
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
|
|
196
|
+
sans-serif;
|
|
197
|
+
--vscode-font-size: 13px;
|
|
198
|
+
--vscode-font-weight: normal;
|
|
199
|
+
--vscode-editor-font-family: Menlo, Monaco, "Courier New", monospace;
|
|
200
|
+
--vscode-editor-font-size: 12px;
|
|
201
|
+
--vscode-editor-font-weight: normal;
|
|
202
|
+
|
|
203
|
+
/* Editor colors */
|
|
204
|
+
--vscode-editor-background: #ffffff;
|
|
205
|
+
--vscode-editor-foreground: #3b3b3b;
|
|
206
|
+
--vscode-editor-inlineValuesForeground: rgba(0, 0, 0, 0.5);
|
|
207
|
+
--vscode-editorGroup-border: #e7e7e7;
|
|
208
|
+
--vscode-editorWidget-border: #d4d4d4;
|
|
209
|
+
|
|
210
|
+
/* Input colors */
|
|
211
|
+
--vscode-input-background: #ffffff;
|
|
212
|
+
--vscode-input-foreground: #3b3b3b;
|
|
213
|
+
--vscode-input-border: #cecece;
|
|
214
|
+
--vscode-input-placeholderForeground: #767676;
|
|
215
|
+
--vscode-inputOption-activeBackground: rgba(0, 144, 241, 0.2);
|
|
216
|
+
--vscode-inputOption-activeBorder: #0090f1;
|
|
217
|
+
--vscode-inputOption-activeForeground: #000000;
|
|
218
|
+
|
|
219
|
+
/* Input validation */
|
|
220
|
+
--vscode-inputValidation-warningBackground: #f2dede;
|
|
221
|
+
--vscode-inputValidation-warningBorder: #be8800;
|
|
222
|
+
--vscode-inputValidation-errorBackground: #f2dede;
|
|
223
|
+
--vscode-inputValidation-errorBorder: #be1100;
|
|
224
|
+
|
|
225
|
+
/* Settings controls (used by vscode-elements textfield, checkbox, dropdown) */
|
|
226
|
+
--vscode-settings-textInputBackground: #ffffff;
|
|
227
|
+
--vscode-settings-textInputForeground: #3b3b3b;
|
|
228
|
+
--vscode-settings-textInputBorder: #cecece;
|
|
229
|
+
--vscode-settings-checkboxBackground: #ffffff;
|
|
230
|
+
--vscode-settings-checkboxForeground: #3b3b3b;
|
|
231
|
+
--vscode-settings-checkboxBorder: #919191;
|
|
232
|
+
--vscode-settings-dropdownBackground: #ffffff;
|
|
233
|
+
--vscode-settings-dropdownForeground: #3b3b3b;
|
|
234
|
+
--vscode-settings-dropdownBorder: #cecece;
|
|
235
|
+
--vscode-settings-dropdownListBorder: #c8c8c8;
|
|
236
|
+
--vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
|
|
237
|
+
|
|
238
|
+
/* Checkbox colors */
|
|
239
|
+
--vscode-checkbox-background: #ffffff;
|
|
240
|
+
--vscode-checkbox-foreground: #3b3b3b;
|
|
241
|
+
--vscode-checkbox-border: #919191;
|
|
242
|
+
|
|
243
|
+
/* Button colors */
|
|
244
|
+
--vscode-button-background: #007acc;
|
|
245
|
+
--vscode-button-foreground: #ffffff;
|
|
246
|
+
--vscode-button-hoverBackground: #0062a3;
|
|
247
|
+
--vscode-button-border: transparent;
|
|
248
|
+
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
|
249
|
+
--vscode-button-secondaryBackground: #5f6a79;
|
|
250
|
+
--vscode-button-secondaryForeground: #ffffff;
|
|
251
|
+
--vscode-button-secondaryHoverBackground: #4c5561;
|
|
252
|
+
|
|
253
|
+
/* Widget/shadow colors */
|
|
254
|
+
--vscode-widget-shadow: rgba(0, 0, 0, 0.16);
|
|
255
|
+
--vscode-widget-border: #d4d4d4;
|
|
256
|
+
|
|
257
|
+
/* Toolbar */
|
|
258
|
+
--vscode-toolbar-hoverBackground: rgba(184, 184, 184, 0.31);
|
|
259
|
+
--vscode-toolbar-activeBackground: rgba(166, 166, 166, 0.31);
|
|
260
|
+
--vscode-toolbar-hoverOutline: transparent;
|
|
261
|
+
|
|
262
|
+
/* List colors (used by select/dropdown components) */
|
|
263
|
+
--vscode-list-hoverBackground: #e8e8e8;
|
|
264
|
+
--vscode-list-hoverForeground: #3b3b3b;
|
|
265
|
+
--vscode-list-activeSelectionBackground: #0060c0;
|
|
266
|
+
--vscode-list-activeSelectionForeground: #ffffff;
|
|
267
|
+
--vscode-list-activeSelectionIconForeground: #ffffff;
|
|
268
|
+
--vscode-list-inactiveSelectionBackground: #e4e6f1;
|
|
269
|
+
--vscode-list-focusOutline: #0090f1;
|
|
270
|
+
--vscode-list-focusAndSelectionOutline: #0090f1;
|
|
271
|
+
--vscode-list-focusHighlightForeground: #0066bf;
|
|
272
|
+
--vscode-list-highlightForeground: #0066bf;
|
|
273
|
+
|
|
274
|
+
/* Menu colors */
|
|
275
|
+
--vscode-menu-background: #ffffff;
|
|
276
|
+
--vscode-menu-foreground: #3b3b3b;
|
|
277
|
+
--vscode-menu-border: #d4d4d4;
|
|
278
|
+
--vscode-menu-selectionBackground: #0060c0;
|
|
279
|
+
--vscode-menu-selectionForeground: #ffffff;
|
|
280
|
+
--vscode-menu-selectionBorder: transparent;
|
|
281
|
+
--vscode-menu-separatorBackground: #d4d4d4;
|
|
282
|
+
|
|
283
|
+
/* Badge colors */
|
|
284
|
+
--vscode-badge-background: #007acc;
|
|
285
|
+
--vscode-badge-foreground: #ffffff;
|
|
286
|
+
--vscode-activityBarBadge-background: #007acc;
|
|
287
|
+
--vscode-activityBarBadge-foreground: #ffffff;
|
|
288
|
+
|
|
289
|
+
/* Panel colors */
|
|
290
|
+
--vscode-panel-background: #ffffff;
|
|
291
|
+
--vscode-panelTitle-activeBorder: #007acc;
|
|
292
|
+
--vscode-panelTitle-activeForeground: #3b3b3b;
|
|
293
|
+
--vscode-panelTitle-inactiveForeground: #717171;
|
|
294
|
+
|
|
295
|
+
/* Sidebar colors */
|
|
296
|
+
--vscode-sideBar-background: #f3f3f3;
|
|
297
|
+
--vscode-sideBarSectionHeader-background: #f3f3f3;
|
|
298
|
+
--vscode-sideBarTitle-foreground: #3b3b3b;
|
|
299
|
+
|
|
300
|
+
/* Progress bar */
|
|
301
|
+
--vscode-progressBar-background: #007acc;
|
|
302
|
+
|
|
303
|
+
/* Scrollbar colors */
|
|
304
|
+
--vscode-scrollbar-shadow: rgba(0, 0, 0, 0.16);
|
|
305
|
+
--vscode-scrollbarSlider-background: rgba(100, 100, 100, 0.4);
|
|
306
|
+
--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
|
307
|
+
--vscode-scrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
|
|
308
|
+
|
|
309
|
+
/* Sash (resizable borders) */
|
|
310
|
+
--vscode-sash-hoverBorder: #0090f1;
|
|
311
|
+
|
|
312
|
+
/* Tree colors */
|
|
313
|
+
--vscode-tree-indentGuidesStroke: #d4d4d4;
|
|
314
|
+
--vscode-tree-inactiveIndentGuidesStroke: rgba(212, 212, 212, 0.5);
|
|
315
|
+
|
|
316
|
+
/* Keybinding table */
|
|
317
|
+
--vscode-keybindingTable-headerBackground: rgba(128, 128, 128, 0.1);
|
|
318
|
+
--vscode-keybindingTable-rowsBackground: rgba(128, 128, 128, 0.04);
|
|
180
319
|
}
|
|
181
320
|
|
|
182
321
|
body:not([class^="vscode-"]) button {
|
|
@@ -185,6 +324,17 @@ body:not([class^="vscode-"]) button {
|
|
|
185
324
|
--bs-nav-link-color: black;
|
|
186
325
|
}
|
|
187
326
|
|
|
327
|
+
/* vscode-elements form component adjustments */
|
|
328
|
+
vscode-label {
|
|
329
|
+
margin-bottom: 0;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
vscode-form-helper {
|
|
333
|
+
font-size: 12px;
|
|
334
|
+
margin-top: 0;
|
|
335
|
+
margin-bottom: 6px;
|
|
336
|
+
}
|
|
337
|
+
|
|
188
338
|
/* AG Grid Theming */
|
|
189
339
|
body {
|
|
190
340
|
--ag-background-color: var(--bs-body-bg);
|
|
@@ -697,7 +847,7 @@ body {
|
|
|
697
847
|
padding-top: 10em;
|
|
698
848
|
}
|
|
699
849
|
|
|
700
|
-
code:not(.sourceCode):not(.source-code) {
|
|
850
|
+
code:not(.sourceCode):not(.source-code):not([class^="language-"]) {
|
|
701
851
|
color: var(--bs-code-color);
|
|
702
852
|
}
|
|
703
853
|
|
|
@@ -914,25 +1064,6 @@ table.table.table-sm td {
|
|
|
914
1064
|
font-size: 0.8em;
|
|
915
1065
|
}
|
|
916
1066
|
|
|
917
|
-
.tab-tools > * {
|
|
918
|
-
flex: 0 1 auto;
|
|
919
|
-
height: 1.5rem;
|
|
920
|
-
margin-left: 0.5rem;
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
.tab-tools > input {
|
|
924
|
-
font-size: 0.7rem;
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
.tab-tools .btn {
|
|
928
|
-
font-size: 0.7rem;
|
|
929
|
-
padding: 0.2em 0.8em;
|
|
930
|
-
}
|
|
931
|
-
|
|
932
|
-
.tab-tools {
|
|
933
|
-
font-size: 0.7rem;
|
|
934
|
-
}
|
|
935
|
-
|
|
936
1067
|
.do-not-collapse-self {
|
|
937
1068
|
display: block;
|
|
938
1069
|
height: auto !important;
|
|
@@ -1506,6 +1637,238 @@ so disabling selection can break that functionality */
|
|
|
1506
1637
|
grid-template-columns: max-content max-content;
|
|
1507
1638
|
column-gap: 0.3em;
|
|
1508
1639
|
}
|
|
1640
|
+
._container_1g8hw_1 {
|
|
1641
|
+
display: flex;
|
|
1642
|
+
flex-direction: column;
|
|
1643
|
+
height: 100%;
|
|
1644
|
+
overflow: hidden;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
._defineScannerSection_1g8hw_8 {
|
|
1648
|
+
padding: 1rem;
|
|
1649
|
+
border-bottom: 1px solid var(--bs-border-color);
|
|
1650
|
+
flex-shrink: 0;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
._sectionTitle_1g8hw_14 {
|
|
1654
|
+
font-size: 1rem;
|
|
1655
|
+
font-weight: 600;
|
|
1656
|
+
margin: 0 0 1rem 0;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
._formRow_1g8hw_20 {
|
|
1660
|
+
display: flex;
|
|
1661
|
+
gap: 2rem;
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
._formColumn_1g8hw_25 {
|
|
1665
|
+
display: flex;
|
|
1666
|
+
flex-direction: column;
|
|
1667
|
+
gap: 0.75rem;
|
|
1668
|
+
flex: 1;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
._formGroup_1g8hw_32 {
|
|
1672
|
+
display: flex;
|
|
1673
|
+
flex-direction: column;
|
|
1674
|
+
gap: 0.25rem;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
._label_1g8hw_38 {
|
|
1678
|
+
font-size: 0.875rem;
|
|
1679
|
+
color: var(--bs-secondary);
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
._select_1g8hw_43 {
|
|
1683
|
+
padding: 0.5rem;
|
|
1684
|
+
border: 1px solid var(--bs-border-color);
|
|
1685
|
+
border-radius: 0.25rem;
|
|
1686
|
+
background-color: var(--bs-body-bg);
|
|
1687
|
+
color: var(--bs-body-color);
|
|
1688
|
+
font-size: 0.875rem;
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
._textarea_1g8hw_52 {
|
|
1692
|
+
padding: 0.5rem;
|
|
1693
|
+
border: 1px solid var(--bs-border-color);
|
|
1694
|
+
border-radius: 0.25rem;
|
|
1695
|
+
background-color: var(--bs-body-bg);
|
|
1696
|
+
color: var(--bs-body-color);
|
|
1697
|
+
font-size: 0.875rem;
|
|
1698
|
+
resize: vertical;
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
._checkboxGroup_1g8hw_62 {
|
|
1702
|
+
display: flex;
|
|
1703
|
+
gap: 1.5rem;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
._checkboxLabel_1g8hw_67 {
|
|
1707
|
+
display: flex;
|
|
1708
|
+
align-items: center;
|
|
1709
|
+
gap: 0.5rem;
|
|
1710
|
+
font-size: 0.875rem;
|
|
1711
|
+
cursor: default;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
._runScanButton_1g8hw_75 {
|
|
1715
|
+
display: flex;
|
|
1716
|
+
align-items: center;
|
|
1717
|
+
gap: 0.5rem;
|
|
1718
|
+
padding: 0.5rem 1rem;
|
|
1719
|
+
border: 1px solid var(--bs-border-color);
|
|
1720
|
+
border-radius: 0.25rem;
|
|
1721
|
+
background-color: var(--bs-secondary-bg);
|
|
1722
|
+
color: var(--bs-body-color);
|
|
1723
|
+
font-size: 0.875rem;
|
|
1724
|
+
cursor: pointer;
|
|
1725
|
+
width: fit-content;
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
._runScanButton_1g8hw_75:hover:not(:disabled) {
|
|
1729
|
+
background-color: var(--bs-tertiary-bg);
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
._runScanButton_1g8hw_75:disabled {
|
|
1733
|
+
cursor: not-allowed;
|
|
1734
|
+
opacity: 0.5;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
._runScanButton_1g8hw_75 i {
|
|
1738
|
+
color: var(--bs-success);
|
|
1739
|
+
font-size: 1.75rem;
|
|
1740
|
+
line-height: 0;
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
._scansList_1g8hw_104 {
|
|
1744
|
+
display: flex;
|
|
1745
|
+
flex-direction: column;
|
|
1746
|
+
flex: 1;
|
|
1747
|
+
padding: 1rem;
|
|
1748
|
+
gap: 1rem;
|
|
1749
|
+
overflow: auto;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
._card_1g8hw_113 {
|
|
1753
|
+
border: 1px solid var(--bs-border-color);
|
|
1754
|
+
border-radius: 0.375rem;
|
|
1755
|
+
padding: 1rem;
|
|
1756
|
+
background-color: var(--bs-body-bg);
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
._header_1g8hw_120 {
|
|
1760
|
+
margin-bottom: 0.75rem;
|
|
1761
|
+
padding-bottom: 0.5rem;
|
|
1762
|
+
border-bottom: 1px solid var(--bs-border-color);
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
._scanId_1g8hw_126 {
|
|
1766
|
+
font-weight: 600;
|
|
1767
|
+
font-family: monospace;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
._configLine_1g8hw_131 {
|
|
1771
|
+
color: var(--bs-secondary);
|
|
1772
|
+
font-size: 0.75rem;
|
|
1773
|
+
font-family: monospace;
|
|
1774
|
+
margin-top: 0.25rem;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
._progressSection_1g8hw_138 {
|
|
1778
|
+
margin-bottom: 0.75rem;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
._progressBar_1g8hw_142 {
|
|
1782
|
+
height: 4px;
|
|
1783
|
+
background-color: var(--bs-secondary-bg);
|
|
1784
|
+
border-radius: 2px;
|
|
1785
|
+
overflow: hidden;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
._progressFill_1g8hw_149 {
|
|
1789
|
+
height: 100%;
|
|
1790
|
+
background-color: var(--bs-success);
|
|
1791
|
+
transition: width 0.3s ease;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
._progressStats_1g8hw_155 {
|
|
1795
|
+
display: flex;
|
|
1796
|
+
gap: 1.5rem;
|
|
1797
|
+
margin-top: 0.25rem;
|
|
1798
|
+
font-family: monospace;
|
|
1799
|
+
font-size: 0.75rem;
|
|
1800
|
+
color: var(--bs-secondary);
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
._content_1g8hw_164 {
|
|
1804
|
+
display: flex;
|
|
1805
|
+
gap: 2rem;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
._mainSection_1g8hw_169 {
|
|
1809
|
+
flex: 1;
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
._table_1g8hw_173 {
|
|
1813
|
+
width: 100%;
|
|
1814
|
+
border-collapse: collapse;
|
|
1815
|
+
font-family: monospace;
|
|
1816
|
+
font-size: 0.875rem;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
._table_1g8hw_173 th,
|
|
1820
|
+
._table_1g8hw_173 td {
|
|
1821
|
+
padding: 0.25rem 0.75rem;
|
|
1822
|
+
text-align: left;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
._table_1g8hw_173 th {
|
|
1826
|
+
font-weight: 600;
|
|
1827
|
+
color: var(--bs-secondary);
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
._numeric_1g8hw_191 {
|
|
1831
|
+
text-align: right;
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
._sidebar_1g8hw_195 {
|
|
1835
|
+
min-width: 150px;
|
|
1836
|
+
border-left: 1px solid var(--bs-border-color);
|
|
1837
|
+
padding-left: 1rem;
|
|
1838
|
+
display: flex;
|
|
1839
|
+
flex-direction: column;
|
|
1840
|
+
gap: 1rem;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
._sidebarSection_1g8hw_204 {
|
|
1844
|
+
font-family: monospace;
|
|
1845
|
+
font-size: 0.875rem;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
._sidebarTitle_1g8hw_209 {
|
|
1849
|
+
font-weight: 600;
|
|
1850
|
+
margin-bottom: 0.5rem;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
._stat_1g8hw_214 {
|
|
1854
|
+
display: flex;
|
|
1855
|
+
justify-content: space-between;
|
|
1856
|
+
gap: 1rem;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
._stat_1g8hw_214 span:first-child {
|
|
1860
|
+
color: var(--bs-secondary);
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
._error_1g8hw_224 {
|
|
1864
|
+
color: var(--bs-danger);
|
|
1865
|
+
font-weight: 600;
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
._mutationStatus_1g8hw_229 {
|
|
1869
|
+
font-size: 0.7rem;
|
|
1870
|
+
color: var(--bs-secondary);
|
|
1871
|
+
}
|
|
1509
1872
|
._footer_1ykeg_1 {
|
|
1510
1873
|
border-top: solid var(--bs-light-border-subtle) 1px;
|
|
1511
1874
|
background: var(--bs-light-bg-subtle);
|
|
@@ -1779,94 +2142,457 @@ so disabling selection can break that functionality */
|
|
|
1779
2142
|
height: 100%;
|
|
1780
2143
|
row-gap: 0;
|
|
1781
2144
|
}
|
|
1782
|
-
.
|
|
1783
|
-
|
|
1784
|
-
align-items: center;
|
|
1785
|
-
gap: 4px;
|
|
1786
|
-
margin-right: 6px;
|
|
1787
|
-
}
|
|
1788
|
-
|
|
1789
|
-
._filterButton_6q7gm_8 {
|
|
2145
|
+
._dropdownContainer_1yyrd_1 {
|
|
2146
|
+
position: relative;
|
|
1790
2147
|
display: inline-flex;
|
|
1791
2148
|
align-items: center;
|
|
1792
|
-
justify-content: center;
|
|
1793
|
-
padding: 2px;
|
|
1794
|
-
border: none;
|
|
1795
|
-
background: transparent;
|
|
1796
|
-
color: var(--bs-secondary);
|
|
1797
|
-
cursor: pointer;
|
|
1798
2149
|
}
|
|
1799
2150
|
|
|
1800
|
-
.
|
|
1801
|
-
color: var(--bs-
|
|
2151
|
+
.btn._toolButton_1yyrd_7 {
|
|
2152
|
+
background-color: var(--bs-light-border-subtle);
|
|
1802
2153
|
}
|
|
1803
2154
|
|
|
1804
|
-
.
|
|
1805
|
-
|
|
2155
|
+
.btn._toolButton_1yyrd_7._bodyColor_1yyrd_11 {
|
|
2156
|
+
background-color: var(--bs-body-bg);
|
|
1806
2157
|
}
|
|
1807
2158
|
|
|
1808
|
-
.
|
|
1809
|
-
|
|
1810
|
-
flex-direction: column;
|
|
1811
|
-
gap: 8px;
|
|
2159
|
+
.btn-tools._toolButton_1yyrd_7 {
|
|
2160
|
+
border: solid 1px var(--bs-border-color);
|
|
1812
2161
|
}
|
|
1813
2162
|
|
|
1814
|
-
.
|
|
1815
|
-
|
|
1816
|
-
align-items: center;
|
|
1817
|
-
gap: 8px;
|
|
2163
|
+
._toolButton_1yyrd_7 {
|
|
2164
|
+
white-space: nowrap;
|
|
1818
2165
|
}
|
|
1819
2166
|
|
|
1820
|
-
.
|
|
1821
|
-
|
|
1822
|
-
font-size: 11px;
|
|
1823
|
-
color: var(--bs-secondary);
|
|
2167
|
+
._toolButton_1yyrd_7 i {
|
|
2168
|
+
margin-right: 0.5em;
|
|
1824
2169
|
}
|
|
1825
2170
|
|
|
1826
|
-
.
|
|
1827
|
-
.
|
|
1828
|
-
|
|
1829
|
-
font-size:
|
|
1830
|
-
padding: 4px 6px;
|
|
1831
|
-
border-radius: 4px;
|
|
1832
|
-
border: 1px solid var(--bs-border-color);
|
|
1833
|
-
background: var(--bs-body-bg);
|
|
1834
|
-
color: var(--bs-body-color);
|
|
2171
|
+
._toolButton_1yyrd_7 ._chevron_1yyrd_27 {
|
|
2172
|
+
margin-left: 0.5em;
|
|
2173
|
+
margin-right: 0;
|
|
2174
|
+
font-size: 0.75em;
|
|
1835
2175
|
}
|
|
1836
2176
|
|
|
1837
|
-
.
|
|
1838
|
-
._filterSelect_6q7gm_45:disabled {
|
|
1839
|
-
background: var(--bs-light);
|
|
1840
|
-
color: var(--bs-secondary);
|
|
1841
|
-
}
|
|
1842
|
-
._container_1b6j7_1 {
|
|
1843
|
-
overflow: auto;
|
|
2177
|
+
._toolButton_1yyrd_7:focus {
|
|
1844
2178
|
outline: none;
|
|
2179
|
+
box-shadow:
|
|
2180
|
+
0 0 0 2px rgba(var(--bs-primary-rgb), 0.5),
|
|
2181
|
+
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
2182
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
1845
2183
|
}
|
|
1846
2184
|
|
|
1847
|
-
.
|
|
1848
|
-
|
|
1849
|
-
width: 100%;
|
|
1850
|
-
}
|
|
1851
|
-
|
|
1852
|
-
._thead_1b6j7_11 {
|
|
1853
|
-
display: grid;
|
|
1854
|
-
position: sticky;
|
|
2185
|
+
._backdrop_1yyrd_41 {
|
|
2186
|
+
position: fixed;
|
|
1855
2187
|
top: 0;
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
._headerRow_1b6j7_20 {
|
|
1862
|
-
display: flex;
|
|
1863
|
-
width: 100%;
|
|
1864
|
-
height: 32px;
|
|
2188
|
+
left: 0;
|
|
2189
|
+
right: 0;
|
|
2190
|
+
bottom: 0;
|
|
2191
|
+
z-index: 1000;
|
|
1865
2192
|
}
|
|
1866
2193
|
|
|
1867
|
-
.
|
|
1868
|
-
|
|
1869
|
-
|
|
2194
|
+
._dropdownMenu_1yyrd_50 {
|
|
2195
|
+
position: absolute;
|
|
2196
|
+
top: 100%;
|
|
2197
|
+
left: 0;
|
|
2198
|
+
margin-top: 0.25rem;
|
|
2199
|
+
background: var(--bs-body-bg);
|
|
2200
|
+
border: 1px solid var(--bs-border-color);
|
|
2201
|
+
border-radius: 0.25rem;
|
|
2202
|
+
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
2203
|
+
z-index: 1001;
|
|
2204
|
+
min-width: 100%;
|
|
2205
|
+
overflow: hidden;
|
|
2206
|
+
}
|
|
2207
|
+
|
|
2208
|
+
._dropdownMenu_1yyrd_50._alignRight_1yyrd_64 {
|
|
2209
|
+
right: 0;
|
|
2210
|
+
left: auto;
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
._dropdownItem_1yyrd_69 {
|
|
2214
|
+
display: block;
|
|
2215
|
+
width: 100%;
|
|
2216
|
+
padding: 0.25rem 0.75rem;
|
|
2217
|
+
background: none;
|
|
2218
|
+
border: none;
|
|
2219
|
+
text-align: left;
|
|
2220
|
+
cursor: pointer;
|
|
2221
|
+
color: var(--bs-body-color);
|
|
2222
|
+
white-space: nowrap;
|
|
2223
|
+
transition: background-color 0.15s ease-in-out;
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
._dropdownItem_1yyrd_69:hover {
|
|
2227
|
+
background-color: var(--bs-tertiary-bg);
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
._dropdownItem_1yyrd_69:active {
|
|
2231
|
+
background-color: var(--bs-secondary-bg);
|
|
2232
|
+
}
|
|
2233
|
+
._chip_15up4_1 {
|
|
2234
|
+
display: inline-flex;
|
|
2235
|
+
flex-direction: row;
|
|
2236
|
+
margin: 0rem 0;
|
|
2237
|
+
padding: 0.1rem 0.4rem;
|
|
2238
|
+
border: solid 1px var(--bs-border-color);
|
|
2239
|
+
border-radius: var(--bs-border-radius);
|
|
2240
|
+
align-items: center;
|
|
2241
|
+
white-space: nowrap;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
._label_15up4_12 {
|
|
2245
|
+
font-weight: 600;
|
|
2246
|
+
margin-right: 0.5em;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
._value_15up4_17 {
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
._icon_15up4_20 {
|
|
2253
|
+
margin-right: 0.2rem;
|
|
2254
|
+
font-size: 0.8em;
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
._closeIcon_15up4_25 {
|
|
2258
|
+
margin-left: 0.3rem;
|
|
2259
|
+
font-size: 0.8em;
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
._clickable_15up4_30 {
|
|
2263
|
+
cursor: pointer;
|
|
2264
|
+
}
|
|
2265
|
+
._chipGroup_1de1s_1 {
|
|
2266
|
+
display: flex;
|
|
2267
|
+
flex-direction: row;
|
|
2268
|
+
flex-wrap: wrap;
|
|
2269
|
+
column-gap: 0.3rem;
|
|
2270
|
+
row-gap: 0.3rem;
|
|
2271
|
+
}
|
|
2272
|
+
._container_et6si_1 {
|
|
2273
|
+
position: relative;
|
|
2274
|
+
width: 100%;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
._input_et6si_6 {
|
|
2278
|
+
width: 100%;
|
|
2279
|
+
font-size: 12px;
|
|
2280
|
+
padding: 4px 6px;
|
|
2281
|
+
border-radius: 4px;
|
|
2282
|
+
border: 1px solid var(--bs-border-color);
|
|
2283
|
+
background: var(--bs-body-bg);
|
|
2284
|
+
color: var(--bs-body-color);
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
._input_et6si_6:disabled {
|
|
2288
|
+
background: var(--bs-light);
|
|
2289
|
+
color: var(--bs-secondary);
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
._inputWithToggle_et6si_21 {
|
|
2293
|
+
padding-right: 24px;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
._toggleButton_et6si_25 {
|
|
2297
|
+
position: absolute;
|
|
2298
|
+
right: 2px;
|
|
2299
|
+
top: 50%;
|
|
2300
|
+
transform: translateY(-50%);
|
|
2301
|
+
background: none;
|
|
2302
|
+
border: none;
|
|
2303
|
+
padding: 2px 4px;
|
|
2304
|
+
cursor: pointer;
|
|
2305
|
+
color: var(--bs-secondary);
|
|
2306
|
+
display: flex;
|
|
2307
|
+
align-items: center;
|
|
2308
|
+
justify-content: center;
|
|
2309
|
+
font-size: 10px;
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
._toggleButton_et6si_25:hover:not(:disabled) {
|
|
2313
|
+
color: var(--bs-body-color);
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
._toggleButton_et6si_25:disabled {
|
|
2317
|
+
cursor: not-allowed;
|
|
2318
|
+
opacity: 0.5;
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
._suggestionsList_et6si_50 {
|
|
2322
|
+
margin: 0;
|
|
2323
|
+
padding: 0;
|
|
2324
|
+
list-style: none;
|
|
2325
|
+
background: var(--bs-body-bg);
|
|
2326
|
+
border: 1px solid var(--bs-border-color);
|
|
2327
|
+
border-radius: 4px;
|
|
2328
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
2329
|
+
max-height: 200px;
|
|
2330
|
+
overflow-y: auto;
|
|
2331
|
+
z-index: 10000;
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
._suggestionItem_et6si_63 {
|
|
2335
|
+
padding: 6px 8px;
|
|
2336
|
+
font-size: 12px;
|
|
2337
|
+
cursor: pointer;
|
|
2338
|
+
white-space: nowrap;
|
|
2339
|
+
overflow: hidden;
|
|
2340
|
+
text-overflow: ellipsis;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
._suggestionItem_et6si_63:hover,
|
|
2344
|
+
._suggestionItem_et6si_63._highlighted_et6si_73 {
|
|
2345
|
+
background: var(--bs-primary);
|
|
2346
|
+
color: white;
|
|
2347
|
+
}
|
|
2348
|
+
._filterContent_1e9kw_1 {
|
|
2349
|
+
display: flex;
|
|
2350
|
+
flex-direction: column;
|
|
2351
|
+
gap: 8px;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
._filterRow_1e9kw_7 {
|
|
2355
|
+
display: flex;
|
|
2356
|
+
align-items: center;
|
|
2357
|
+
gap: 8px;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
._filterSelect_1e9kw_13,
|
|
2361
|
+
._filterInput_1e9kw_14 {
|
|
2362
|
+
flex: 1;
|
|
2363
|
+
font-size: 12px;
|
|
2364
|
+
padding: 4px 6px;
|
|
2365
|
+
border-radius: 4px;
|
|
2366
|
+
border: 1px solid var(--bs-border-color);
|
|
2367
|
+
background: var(--bs-body-bg);
|
|
2368
|
+
color: var(--bs-body-color);
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
._filterInput_1e9kw_14:disabled,
|
|
2372
|
+
._filterSelect_1e9kw_13:disabled {
|
|
2373
|
+
background: var(--bs-light);
|
|
2374
|
+
color: var(--bs-secondary);
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
|
+
._columnId_1e9kw_30 {
|
|
2378
|
+
font-weight: 600;
|
|
2379
|
+
font-family: var(--bs-monospace);
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
._columnIdText_1e9kw_35 {
|
|
2383
|
+
margin-left: 0.5rem;
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
.btn._filterButton_1e9kw_39 {
|
|
2387
|
+
width: 100%;
|
|
2388
|
+
padding: 0.2rem;
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
._durationInputWrapper_1e9kw_44 {
|
|
2392
|
+
display: flex;
|
|
2393
|
+
flex-direction: column;
|
|
2394
|
+
gap: 4px;
|
|
2395
|
+
flex: 1;
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
._durationHelper_1e9kw_51 {
|
|
2399
|
+
font-size: 11px;
|
|
2400
|
+
color: var(--bs-secondary);
|
|
2401
|
+
padding-left: 2px;
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
._rangeLabel_1e9kw_57 {
|
|
2405
|
+
font-size: 11px;
|
|
2406
|
+
color: var(--bs-secondary);
|
|
2407
|
+
padding-left: 2px;
|
|
2408
|
+
}
|
|
2409
|
+
.btn._toolButton_wcmr6_1 {
|
|
2410
|
+
background-color: var(--bs-light-border-subtle);
|
|
2411
|
+
white-space: nowrap;
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
._marginRight_wcmr6_6 {
|
|
2415
|
+
margin-right: 0.5em;
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
._toolButton_wcmr6_1:focus {
|
|
2419
|
+
outline: none;
|
|
2420
|
+
box-shadow:
|
|
2421
|
+
0 0 0 2px rgba(var(--bs-primary-rgb), 0.5),
|
|
2422
|
+
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
2423
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2426
|
+
._latched_wcmr6_18,
|
|
2427
|
+
._latched_wcmr6_18:hover {
|
|
2428
|
+
box-shadow:
|
|
2429
|
+
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
2430
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
.btn._toolButton_wcmr6_1._subtle_wcmr6_25 {
|
|
2434
|
+
background-color: var(--bs-body-bg);
|
|
2435
|
+
}
|
|
2436
|
+
._button_wkaow_1 {
|
|
2437
|
+
padding: 0.1rem 0.3rem;
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
.btn._button_wkaow_1 {
|
|
2441
|
+
background-color: transparent;
|
|
2442
|
+
}
|
|
2443
|
+
._columnList_1sw8v_1 {
|
|
2444
|
+
display: flex;
|
|
2445
|
+
flex-direction: column;
|
|
2446
|
+
gap: 0.15em;
|
|
2447
|
+
max-height: 400px;
|
|
2448
|
+
overflow-y: auto;
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
._row_1sw8v_9 {
|
|
2452
|
+
display: flex;
|
|
2453
|
+
align-items: center;
|
|
2454
|
+
gap: 0.5em;
|
|
2455
|
+
cursor: pointer;
|
|
2456
|
+
border-radius: var(--bs-border-radius);
|
|
2457
|
+
padding: 0.1em 0.4em;
|
|
2458
|
+
margin: 0 -0.4em;
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
._row_1sw8v_9:hover {
|
|
2462
|
+
background-color: var(--bs-secondary-bg);
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
._links_1sw8v_23 {
|
|
2466
|
+
display: flex;
|
|
2467
|
+
padding-bottom: 0.2em;
|
|
2468
|
+
margin-bottom: 0.4em;
|
|
2469
|
+
column-gap: 0.3em;
|
|
2470
|
+
border-bottom: solid 1px var(--bs-border-color);
|
|
2471
|
+
}
|
|
2472
|
+
|
|
2473
|
+
._links_1sw8v_23 a {
|
|
2474
|
+
cursor: pointer;
|
|
2475
|
+
text-decoration: none;
|
|
2476
|
+
color: var(--bs-link-color);
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2479
|
+
._links_1sw8v_23 a:hover {
|
|
2480
|
+
color: var(--bs-link-hover-color);
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
._selected_1sw8v_41 {
|
|
2484
|
+
font-weight: 600;
|
|
2485
|
+
}
|
|
2486
|
+
._container_z2s7f_1 {
|
|
2487
|
+
display: flex;
|
|
2488
|
+
flex-direction: row;
|
|
2489
|
+
background: var(--bs-light-bg-subtle);
|
|
2490
|
+
border-bottom: solid var(--bs-border-color) 1px;
|
|
2491
|
+
padding: 0rem 0.5rem;
|
|
2492
|
+
align-items: flex-start;
|
|
2493
|
+
width: 100%;
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
._filterBar_z2s7f_11 {
|
|
2497
|
+
margin: 1px 0;
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
._filterLabel_z2s7f_15 {
|
|
2501
|
+
margin-right: 0.3rem;
|
|
2502
|
+
margin-top: 3px;
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2505
|
+
._filterNone_z2s7f_20 {
|
|
2506
|
+
margin-top: 2px;
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
._actionButtons_z2s7f_24 {
|
|
2510
|
+
margin-left: auto;
|
|
2511
|
+
margin-top: 0.1rem;
|
|
2512
|
+
margin-bottom: 0.1rem;
|
|
2513
|
+
display: flex;
|
|
2514
|
+
justify-content: flex-end;
|
|
2515
|
+
align-items: center;
|
|
2516
|
+
flex-direction: row;
|
|
2517
|
+
font-size: var(--inspect-font-size-smallestest);
|
|
2518
|
+
height: calc(100% - 4px);
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
._actionButton_z2s7f_24 {
|
|
2522
|
+
padding: 0.1rem 0.4rem;
|
|
2523
|
+
margin: 1px 0rem;
|
|
2524
|
+
font-size: var(--inspect-font-size-smallestest);
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
._actionButtonDropDown_z2s7f_42 {
|
|
2528
|
+
font-size: var(--inspect-font-size-smallestest);
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
._actionButton_z2s7f_24._chipButton_z2s7f_46 {
|
|
2532
|
+
background-color: unset;
|
|
2533
|
+
margin-left: 0.3rem;
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
._sep_z2s7f_51 {
|
|
2537
|
+
width: 1px;
|
|
2538
|
+
height: 100%;
|
|
2539
|
+
margin: 2px 0.3rem;
|
|
2540
|
+
|
|
2541
|
+
background-color: var(--bs-border-color);
|
|
2542
|
+
font-size: var(--inspect-font-size-smallestest);
|
|
2543
|
+
}
|
|
2544
|
+
._filterButton_fuk0s_1 {
|
|
2545
|
+
display: inline-flex;
|
|
2546
|
+
align-items: center;
|
|
2547
|
+
justify-content: center;
|
|
2548
|
+
padding: 2px;
|
|
2549
|
+
border: none;
|
|
2550
|
+
background: transparent;
|
|
2551
|
+
color: var(--bs-secondary);
|
|
2552
|
+
cursor: pointer;
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
._filterButtonActive_fuk0s_12 {
|
|
2556
|
+
color: var(--bs-primary);
|
|
2557
|
+
}
|
|
2558
|
+
._headerActions_uh0qk_1 {
|
|
2559
|
+
display: flex;
|
|
2560
|
+
align-items: center;
|
|
2561
|
+
gap: 4px;
|
|
2562
|
+
margin-right: 6px;
|
|
2563
|
+
}
|
|
2564
|
+
|
|
2565
|
+
._filterPopover_uh0qk_8 {
|
|
2566
|
+
min-width: 180px;
|
|
2567
|
+
}
|
|
2568
|
+
._container_1b6j7_1 {
|
|
2569
|
+
overflow: auto;
|
|
2570
|
+
outline: none;
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
._table_1b6j7_6 {
|
|
2574
|
+
display: grid;
|
|
2575
|
+
width: 100%;
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2578
|
+
._thead_1b6j7_11 {
|
|
2579
|
+
display: grid;
|
|
2580
|
+
position: sticky;
|
|
2581
|
+
top: 0;
|
|
2582
|
+
z-index: 1;
|
|
2583
|
+
background: var(--bs-light-bg-subtle);
|
|
2584
|
+
border-bottom: 1px solid var(--bs-border-color);
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
._headerRow_1b6j7_20 {
|
|
2588
|
+
display: flex;
|
|
2589
|
+
width: 100%;
|
|
2590
|
+
height: 32px;
|
|
2591
|
+
}
|
|
2592
|
+
|
|
2593
|
+
._headerCell_1b6j7_26 {
|
|
2594
|
+
display: flex;
|
|
2595
|
+
position: relative;
|
|
1870
2596
|
align-items: center;
|
|
1871
2597
|
justify-content: space-between;
|
|
1872
2598
|
gap: 4px;
|
|
@@ -2019,24 +2745,23 @@ so disabling selection can break that functionality */
|
|
|
2019
2745
|
margin-right: auto;
|
|
2020
2746
|
margin-top: 3rem;
|
|
2021
2747
|
}
|
|
2022
|
-
.
|
|
2748
|
+
._container_w24zj_1 {
|
|
2023
2749
|
height: 100%;
|
|
2024
2750
|
display: grid;
|
|
2025
|
-
grid-template-rows: max-content max-content 1fr max-content;
|
|
2751
|
+
grid-template-rows: max-content max-content max-content 1fr max-content;
|
|
2026
2752
|
}
|
|
2027
2753
|
|
|
2028
|
-
.
|
|
2754
|
+
._panel_w24zj_7 {
|
|
2029
2755
|
display: grid;
|
|
2030
2756
|
grid-template-columns: max-content 1fr;
|
|
2031
2757
|
}
|
|
2032
|
-
.
|
|
2033
|
-
height: 100vh;
|
|
2758
|
+
._activityBar_10a5h_1 {
|
|
2034
2759
|
width: 78px;
|
|
2035
2760
|
border-right: solid 1px var(--bs-border-color);
|
|
2036
2761
|
background-color: var(--bs-light);
|
|
2037
2762
|
}
|
|
2038
2763
|
|
|
2039
|
-
.
|
|
2764
|
+
._activityHost_10a5h_7 {
|
|
2040
2765
|
padding-top: 1rem;
|
|
2041
2766
|
padding-bottom: 1rem;
|
|
2042
2767
|
display: grid;
|
|
@@ -2045,7 +2770,7 @@ so disabling selection can break that functionality */
|
|
|
2045
2770
|
row-gap: 1rem;
|
|
2046
2771
|
}
|
|
2047
2772
|
|
|
2048
|
-
.
|
|
2773
|
+
._activity_10a5h_1 {
|
|
2049
2774
|
display: flex;
|
|
2050
2775
|
flex-direction: column;
|
|
2051
2776
|
align-items: center;
|
|
@@ -2054,38 +2779,360 @@ so disabling selection can break that functionality */
|
|
|
2054
2779
|
border-radius: var(--bs-border-radius);
|
|
2055
2780
|
}
|
|
2056
2781
|
|
|
2057
|
-
.
|
|
2058
|
-
background-color: var(--bs-body-bg);
|
|
2059
|
-
cursor: pointer;
|
|
2782
|
+
._activity_10a5h_1:hover {
|
|
2783
|
+
background-color: var(--bs-body-bg);
|
|
2784
|
+
cursor: pointer;
|
|
2785
|
+
}
|
|
2786
|
+
|
|
2787
|
+
._activity_10a5h_1._selected_10a5h_30 {
|
|
2788
|
+
background-color: var(--bs-primary-bg-subtle);
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2791
|
+
._icon_10a5h_34 {
|
|
2792
|
+
font-size: 1.1rem;
|
|
2793
|
+
}
|
|
2794
|
+
|
|
2795
|
+
._label_10a5h_38 {
|
|
2796
|
+
font-size: 0.5rem;
|
|
2797
|
+
text-transform: uppercase;
|
|
2798
|
+
}
|
|
2799
|
+
._outerLayout_1j111_1 {
|
|
2800
|
+
display: flex;
|
|
2801
|
+
flex-direction: column;
|
|
2802
|
+
height: 100vh;
|
|
2803
|
+
width: 100vw;
|
|
2804
|
+
overflow: hidden;
|
|
2805
|
+
}
|
|
2806
|
+
|
|
2807
|
+
._layout_1j111_9 {
|
|
2808
|
+
display: flex;
|
|
2809
|
+
flex-direction: row;
|
|
2810
|
+
flex: 1;
|
|
2811
|
+
overflow: hidden;
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
._content_1j111_16 {
|
|
2815
|
+
flex: 1;
|
|
2816
|
+
overflow: hidden;
|
|
2817
|
+
}
|
|
2818
|
+
|
|
2819
|
+
._content_1j111_16._scrolling_1j111_21 {
|
|
2820
|
+
overflow: auto;
|
|
2821
|
+
}
|
|
2822
|
+
._projectBar_cmger_1 {
|
|
2823
|
+
display: flex;
|
|
2824
|
+
flex-direction: column;
|
|
2825
|
+
background: var(--bs-light);
|
|
2826
|
+
border-bottom: solid 1px var(--bs-border-color);
|
|
2827
|
+
min-height: 2em;
|
|
2828
|
+
padding: 0.1rem 0.3rem;
|
|
2829
|
+
row-gap: 0;
|
|
2830
|
+
align-items: center;
|
|
2831
|
+
justify-content: center;
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
._row_cmger_13 {
|
|
2835
|
+
display: grid;
|
|
2836
|
+
grid-template-columns: 1fr auto 1fr;
|
|
2837
|
+
align-items: center;
|
|
2838
|
+
column-gap: 0.5rem;
|
|
2839
|
+
width: 100%;
|
|
2840
|
+
height: 100%;
|
|
2841
|
+
}
|
|
2842
|
+
|
|
2843
|
+
._left_cmger_22,
|
|
2844
|
+
._center_cmger_23,
|
|
2845
|
+
._right_cmger_24 {
|
|
2846
|
+
font-size: var(--inspect-font-size-small);
|
|
2847
|
+
}
|
|
2848
|
+
|
|
2849
|
+
._left_cmger_22 {
|
|
2850
|
+
grid-column: 1;
|
|
2851
|
+
justify-self: start;
|
|
2852
|
+
display: flex;
|
|
2853
|
+
align-items: center;
|
|
2854
|
+
gap: 0.2rem;
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
._center_cmger_23 {
|
|
2858
|
+
grid-column: 2;
|
|
2859
|
+
justify-self: center;
|
|
2860
|
+
display: flex;
|
|
2861
|
+
align-items: center;
|
|
2862
|
+
}
|
|
2863
|
+
|
|
2864
|
+
._right_cmger_24 {
|
|
2865
|
+
grid-column: 3;
|
|
2866
|
+
justify-self: end;
|
|
2867
|
+
display: flex;
|
|
2868
|
+
align-items: center;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
._historyButton_cmger_50 {
|
|
2872
|
+
font-size: 0.9em;
|
|
2873
|
+
}
|
|
2874
|
+
|
|
2875
|
+
._navButton_cmger_54 {
|
|
2876
|
+
display: inline-flex;
|
|
2877
|
+
align-items: center;
|
|
2878
|
+
justify-content: center;
|
|
2879
|
+
border: none;
|
|
2880
|
+
background: transparent;
|
|
2881
|
+
color: var(--bs-secondary);
|
|
2882
|
+
padding: 0.12rem 0.3rem;
|
|
2883
|
+
border-radius: var(--bs-border-radius);
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
._navButton_cmger_54:hover,
|
|
2887
|
+
._navButton_cmger_54:focus-visible {
|
|
2888
|
+
background-color: var(--bs-secondary-bg-subtle);
|
|
2889
|
+
}
|
|
2890
|
+
._backdrop_wrdr6_1 {
|
|
2891
|
+
position: fixed;
|
|
2892
|
+
inset: 0;
|
|
2893
|
+
background: rgba(0, 0, 0, 0.36);
|
|
2894
|
+
display: flex;
|
|
2895
|
+
align-items: flex-start;
|
|
2896
|
+
justify-content: center;
|
|
2897
|
+
padding-top: 15vh;
|
|
2898
|
+
z-index: 1000;
|
|
2899
|
+
}
|
|
2900
|
+
|
|
2901
|
+
._modal_wrdr6_12 {
|
|
2902
|
+
background: var(--vscode-editor-background);
|
|
2903
|
+
border: 1px solid
|
|
2904
|
+
var(--vscode-widget-border, var(--vscode-editorWidget-border));
|
|
2905
|
+
border-radius: 4px;
|
|
2906
|
+
box-shadow: 0 4px 8px var(--vscode-widget-shadow, rgba(0, 0, 0, 0.36));
|
|
2907
|
+
max-width: 450px;
|
|
2908
|
+
width: 90%;
|
|
2909
|
+
max-height: 80vh;
|
|
2910
|
+
display: flex;
|
|
2911
|
+
flex-direction: column;
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
._header_wrdr6_25 {
|
|
2915
|
+
display: flex;
|
|
2916
|
+
justify-content: space-between;
|
|
2917
|
+
align-items: center;
|
|
2918
|
+
padding: 12px 16px;
|
|
2919
|
+
border-bottom: 1px solid
|
|
2920
|
+
var(--vscode-widget-border, var(--vscode-editorWidget-border));
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
._title_wrdr6_34 {
|
|
2924
|
+
margin: 0;
|
|
2925
|
+
font-size: 14px;
|
|
2926
|
+
font-weight: 600;
|
|
2927
|
+
color: var(--vscode-foreground);
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
._closeButton_wrdr6_41 {
|
|
2931
|
+
background: none;
|
|
2932
|
+
border: none;
|
|
2933
|
+
color: var(--vscode-foreground);
|
|
2934
|
+
cursor: pointer;
|
|
2935
|
+
padding: 4px;
|
|
2936
|
+
display: flex;
|
|
2937
|
+
align-items: center;
|
|
2938
|
+
justify-content: center;
|
|
2939
|
+
}
|
|
2940
|
+
|
|
2941
|
+
._closeButton_wrdr6_41:hover {
|
|
2942
|
+
background: var(--vscode-toolbar-hoverBackground);
|
|
2943
|
+
border-radius: 4px;
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2946
|
+
._body_wrdr6_57 {
|
|
2947
|
+
padding: 16px;
|
|
2948
|
+
color: var(--vscode-foreground);
|
|
2949
|
+
font-size: 13px;
|
|
2950
|
+
overflow-y: auto;
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
._footer_wrdr6_64 {
|
|
2954
|
+
display: flex;
|
|
2955
|
+
justify-content: flex-end;
|
|
2956
|
+
gap: 8px;
|
|
2957
|
+
padding: 12px 16px;
|
|
2958
|
+
border-top: 1px solid
|
|
2959
|
+
var(--vscode-widget-border, var(--vscode-editorWidget-border));
|
|
2960
|
+
}
|
|
2961
|
+
._container_1ch30_1 {
|
|
2962
|
+
height: 100%;
|
|
2963
|
+
display: grid;
|
|
2964
|
+
grid-template-rows: max-content auto 1fr;
|
|
2965
|
+
}
|
|
2966
|
+
|
|
2967
|
+
._container_1ch30_1 > ._headerRow_1ch30_7 {
|
|
2968
|
+
grid-row: 1;
|
|
2969
|
+
}
|
|
2970
|
+
|
|
2971
|
+
._container_1ch30_1 > ._conflictBanner_1ch30_11 {
|
|
2972
|
+
grid-row: 2;
|
|
2973
|
+
}
|
|
2974
|
+
|
|
2975
|
+
._container_1ch30_1 > ._loading_1ch30_15,
|
|
2976
|
+
._container_1ch30_1 > ._error_1ch30_16 {
|
|
2977
|
+
grid-row: 3;
|
|
2978
|
+
}
|
|
2979
|
+
|
|
2980
|
+
._container_1ch30_1 > ._splitLayout_1ch30_20 {
|
|
2981
|
+
grid-row: 3;
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
._headerRow_1ch30_7 {
|
|
2985
|
+
display: flex;
|
|
2986
|
+
justify-content: space-between;
|
|
2987
|
+
align-items: center;
|
|
2988
|
+
padding: 1rem 1.25rem 0.75rem 1rem;
|
|
2989
|
+
border-bottom: 1px solid var(--vscode-widget-border);
|
|
2990
|
+
}
|
|
2991
|
+
|
|
2992
|
+
._header_1ch30_7 {
|
|
2993
|
+
font-size: 16px;
|
|
2994
|
+
font-weight: 600;
|
|
2995
|
+
color: var(--vscode-foreground);
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
._detail_1ch30_38 {
|
|
2999
|
+
font-size: 12px;
|
|
3000
|
+
color: var(--vscode-descriptionForeground);
|
|
3001
|
+
}
|
|
3002
|
+
|
|
3003
|
+
._conflictBanner_1ch30_11 {
|
|
3004
|
+
background: var(--vscode-inputValidation-warningBackground);
|
|
3005
|
+
border: 1px solid var(--vscode-inputValidation-warningBorder);
|
|
3006
|
+
padding: 8px 12px;
|
|
3007
|
+
margin: 0.5rem 1rem;
|
|
3008
|
+
border-radius: 4px;
|
|
3009
|
+
display: flex;
|
|
3010
|
+
justify-content: space-between;
|
|
3011
|
+
align-items: center;
|
|
3012
|
+
font-size: 13px;
|
|
3013
|
+
color: var(--vscode-foreground);
|
|
3014
|
+
}
|
|
3015
|
+
|
|
3016
|
+
._conflictActions_1ch30_56 {
|
|
3017
|
+
display: flex;
|
|
3018
|
+
gap: 8px;
|
|
3019
|
+
}
|
|
3020
|
+
|
|
3021
|
+
._splitLayout_1ch30_20 {
|
|
3022
|
+
display: flex;
|
|
3023
|
+
min-height: 0;
|
|
3024
|
+
gap: 1rem;
|
|
3025
|
+
padding-left: 1rem;
|
|
3026
|
+
padding-top: 1rem;
|
|
3027
|
+
}
|
|
3028
|
+
|
|
3029
|
+
._treeNav_1ch30_69 {
|
|
3030
|
+
width: 160px;
|
|
3031
|
+
flex-shrink: 0;
|
|
3032
|
+
overflow-y: auto;
|
|
3033
|
+
}
|
|
3034
|
+
|
|
3035
|
+
._navList_1ch30_75 {
|
|
3036
|
+
list-style: none;
|
|
3037
|
+
margin: 0;
|
|
3038
|
+
padding: 0;
|
|
3039
|
+
}
|
|
3040
|
+
|
|
3041
|
+
._navListItem_1ch30_81 {
|
|
3042
|
+
list-style: none;
|
|
3043
|
+
margin: 0;
|
|
3044
|
+
padding: 0;
|
|
3045
|
+
}
|
|
3046
|
+
|
|
3047
|
+
._navGroup_1ch30_87 {
|
|
3048
|
+
font-size: 12px;
|
|
3049
|
+
font-weight: 600;
|
|
3050
|
+
color: var(--vscode-foreground);
|
|
3051
|
+
padding: 6px 8px 4px 8px;
|
|
3052
|
+
text-transform: uppercase;
|
|
3053
|
+
letter-spacing: 0.03em;
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
._navGroup_1ch30_87:not(:first-child) {
|
|
3057
|
+
margin-top: 0.75rem;
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3060
|
+
._navItem_1ch30_100 {
|
|
3061
|
+
display: block;
|
|
3062
|
+
width: 100%;
|
|
3063
|
+
padding: 4px 8px 4px 16px;
|
|
3064
|
+
font-size: 13px;
|
|
3065
|
+
color: var(--vscode-foreground);
|
|
3066
|
+
background: none;
|
|
3067
|
+
border: none;
|
|
3068
|
+
text-align: left;
|
|
3069
|
+
cursor: pointer;
|
|
3070
|
+
border-radius: 3px;
|
|
3071
|
+
}
|
|
3072
|
+
|
|
3073
|
+
._navItem_1ch30_100:hover {
|
|
3074
|
+
background: var(--vscode-list-hoverBackground);
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
._navItem_1ch30_100:focus {
|
|
3078
|
+
outline: 1px solid var(--vscode-focusBorder);
|
|
3079
|
+
outline-offset: -1px;
|
|
3080
|
+
}
|
|
3081
|
+
|
|
3082
|
+
._scrollContent_1ch30_122 {
|
|
3083
|
+
flex: 1;
|
|
3084
|
+
min-width: 0;
|
|
3085
|
+
overflow-y: auto;
|
|
3086
|
+
padding-right: 1rem;
|
|
3087
|
+
}
|
|
3088
|
+
|
|
3089
|
+
/* Make text fields wider */
|
|
3090
|
+
._field_1ch30_130 vscode-textfield {
|
|
3091
|
+
width: 400px !important;
|
|
2060
3092
|
}
|
|
2061
3093
|
|
|
2062
|
-
.
|
|
2063
|
-
|
|
3094
|
+
._field_1ch30_130 vscode-textfield[type="number"] {
|
|
3095
|
+
width: 250px !important;
|
|
2064
3096
|
}
|
|
2065
3097
|
|
|
2066
|
-
.
|
|
2067
|
-
|
|
3098
|
+
._field_1ch30_130 vscode-textarea {
|
|
3099
|
+
width: 400px !important;
|
|
2068
3100
|
}
|
|
2069
3101
|
|
|
2070
|
-
.
|
|
2071
|
-
|
|
2072
|
-
text-transform: uppercase;
|
|
3102
|
+
._field_1ch30_130 vscode-single-select {
|
|
3103
|
+
width: 250px !important;
|
|
2073
3104
|
}
|
|
2074
|
-
|
|
3105
|
+
|
|
3106
|
+
._section_1ch30_146 {
|
|
2075
3107
|
display: flex;
|
|
2076
|
-
flex-direction:
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
overflow: hidden;
|
|
3108
|
+
flex-direction: column;
|
|
3109
|
+
gap: 0.75rem;
|
|
3110
|
+
margin-bottom: 1.5rem;
|
|
2080
3111
|
}
|
|
2081
3112
|
|
|
2082
|
-
.
|
|
2083
|
-
|
|
2084
|
-
|
|
3113
|
+
._sectionHeader_1ch30_153 {
|
|
3114
|
+
font-size: 13px;
|
|
3115
|
+
font-weight: 600;
|
|
3116
|
+
color: var(--vscode-foreground);
|
|
3117
|
+
padding: 0.35rem 0.75rem 0.35rem 1rem;
|
|
3118
|
+
margin-left: -0.75rem;
|
|
3119
|
+
background: var(--vscode-sideBarSectionHeader-background);
|
|
3120
|
+
border-radius: 3px;
|
|
2085
3121
|
}
|
|
2086
3122
|
|
|
2087
|
-
.
|
|
2088
|
-
|
|
3123
|
+
._field_1ch30_130 {
|
|
3124
|
+
display: flex;
|
|
3125
|
+
flex-direction: column;
|
|
3126
|
+
}
|
|
3127
|
+
|
|
3128
|
+
._loading_1ch30_15,
|
|
3129
|
+
._error_1ch30_16 {
|
|
3130
|
+
font-size: 13px;
|
|
3131
|
+
color: var(--vscode-foreground);
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3134
|
+
._error_1ch30_16 {
|
|
3135
|
+
color: var(--vscode-errorForeground);
|
|
2089
3136
|
}
|
|
2090
3137
|
._root_ke0e7_1 {
|
|
2091
3138
|
height: 100vh;
|
|
@@ -2164,21 +3211,21 @@ button._segment_19z32_10 {
|
|
|
2164
3211
|
._segment_19z32_10 i {
|
|
2165
3212
|
margin-right: 0.2em;
|
|
2166
3213
|
}
|
|
2167
|
-
.
|
|
3214
|
+
._tabs_xzxjl_1 {
|
|
2168
3215
|
align-items: center;
|
|
2169
3216
|
}
|
|
2170
3217
|
|
|
2171
|
-
.
|
|
3218
|
+
._tabContents_xzxjl_5 {
|
|
2172
3219
|
flex: 1;
|
|
2173
3220
|
overflow-y: hidden;
|
|
2174
3221
|
}
|
|
2175
3222
|
|
|
2176
|
-
.
|
|
3223
|
+
._tabContents_xzxjl_5._scrollable_xzxjl_10 {
|
|
2177
3224
|
height: 100%;
|
|
2178
3225
|
overflow-y: auto;
|
|
2179
3226
|
}
|
|
2180
3227
|
|
|
2181
|
-
.
|
|
3228
|
+
._tab_xzxjl_1 {
|
|
2182
3229
|
color: "var(--bs-body-color)";
|
|
2183
3230
|
padding: 0.25rem 0.5rem;
|
|
2184
3231
|
border-top-left-radius: var(--bs-border-radius);
|
|
@@ -2188,15 +3235,15 @@ button._segment_19z32_10 {
|
|
|
2188
3235
|
margin-bottom: -1px;
|
|
2189
3236
|
}
|
|
2190
3237
|
|
|
2191
|
-
.
|
|
3238
|
+
._tabItem_xzxjl_25 {
|
|
2192
3239
|
align-self: end;
|
|
2193
3240
|
}
|
|
2194
3241
|
|
|
2195
|
-
.
|
|
3242
|
+
._tabIcon_xzxjl_29 {
|
|
2196
3243
|
margin-right: 0.5em;
|
|
2197
3244
|
}
|
|
2198
3245
|
|
|
2199
|
-
.
|
|
3246
|
+
._tabTools_xzxjl_33 {
|
|
2200
3247
|
flex-basis: auto;
|
|
2201
3248
|
margin-left: auto;
|
|
2202
3249
|
display: flex;
|
|
@@ -2206,10 +3253,24 @@ button._segment_19z32_10 {
|
|
|
2206
3253
|
row-gap: 0.3rem;
|
|
2207
3254
|
}
|
|
2208
3255
|
|
|
2209
|
-
.
|
|
3256
|
+
._tabStyle_xzxjl_43 {
|
|
2210
3257
|
padding-left: 0.7em;
|
|
2211
3258
|
padding-right: 0.7em;
|
|
2212
3259
|
}
|
|
3260
|
+
|
|
3261
|
+
._tabTools_xzxjl_33 > * {
|
|
3262
|
+
flex: 0 1 auto;
|
|
3263
|
+
margin-left: 0.5rem;
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
._tabTools_xzxjl_33 input {
|
|
3267
|
+
font-size: var(--inspect-font-size-smallest);
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3270
|
+
._tabTools_xzxjl_33 .btn {
|
|
3271
|
+
font-size: var(--inspect-font-size-smallest);
|
|
3272
|
+
padding: 0.1em 0.5em;
|
|
3273
|
+
}
|
|
2213
3274
|
.card-header-container:not(.card-header-modern) {
|
|
2214
3275
|
display: grid;
|
|
2215
3276
|
grid-template-columns: max-content auto;
|
|
@@ -2371,24 +3432,6 @@ button._segment_19z32_10 {
|
|
|
2371
3432
|
padding-left: 0.5rem;
|
|
2372
3433
|
background-color: var(--bs-body-bg);
|
|
2373
3434
|
}
|
|
2374
|
-
._toolButton_nu8dt_1 i {
|
|
2375
|
-
margin-right: 0.5em;
|
|
2376
|
-
}
|
|
2377
|
-
|
|
2378
|
-
._toolButton_nu8dt_1:focus {
|
|
2379
|
-
outline: none;
|
|
2380
|
-
box-shadow:
|
|
2381
|
-
0 0 0 2px rgba(var(--bs-primary-rgb), 0.5),
|
|
2382
|
-
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
2383
|
-
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
2384
|
-
}
|
|
2385
|
-
|
|
2386
|
-
._latched_nu8dt_13,
|
|
2387
|
-
._latched_nu8dt_13:hover {
|
|
2388
|
-
box-shadow:
|
|
2389
|
-
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
2390
|
-
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
2391
|
-
}
|
|
2392
3435
|
._visible_tm52u_1 {
|
|
2393
3436
|
display: block;
|
|
2394
3437
|
}
|
|
@@ -2728,24 +3771,24 @@ a._citationLink_1ggvf_9:hover {
|
|
|
2728
3771
|
._toolPanel_1792k_40 {
|
|
2729
3772
|
display: contents;
|
|
2730
3773
|
}
|
|
2731
|
-
.
|
|
3774
|
+
._toolImage_qu6a9_1 {
|
|
2732
3775
|
max-width: 800px;
|
|
2733
3776
|
border: solid var(--bs-border-color) 1px;
|
|
2734
3777
|
}
|
|
2735
3778
|
|
|
2736
|
-
.
|
|
3779
|
+
._output_qu6a9_6 {
|
|
2737
3780
|
display: grid;
|
|
2738
3781
|
}
|
|
2739
3782
|
|
|
2740
|
-
.
|
|
3783
|
+
._textOutput_qu6a9_10 {
|
|
2741
3784
|
padding-left: 2px;
|
|
2742
3785
|
padding: 0.5em 0.5em 0.5em 0.5em;
|
|
2743
3786
|
white-space: pre-wrap;
|
|
2744
3787
|
margin-bottom: 0;
|
|
2745
|
-
font-size:
|
|
3788
|
+
font-size: var(--inspect-font-size-smallest) !important;
|
|
2746
3789
|
}
|
|
2747
3790
|
|
|
2748
|
-
.
|
|
3791
|
+
._textCode_qu6a9_18 {
|
|
2749
3792
|
word-wrap: anywhere;
|
|
2750
3793
|
}
|
|
2751
3794
|
._grid_17ltx_1 {
|
|
@@ -2829,21 +3872,22 @@ a._citationLink_1ggvf_9:hover {
|
|
|
2829
3872
|
._inProgress_1t8rx_9 {
|
|
2830
3873
|
font-weight: bold;
|
|
2831
3874
|
}
|
|
2832
|
-
.
|
|
3875
|
+
._outputPre_fhwyo_1 {
|
|
2833
3876
|
padding: 0.5em;
|
|
2834
3877
|
margin-top: 0.25em;
|
|
2835
3878
|
margin-bottom: 0;
|
|
2836
3879
|
}
|
|
2837
3880
|
|
|
2838
|
-
.
|
|
3881
|
+
._toolView_fhwyo_7 {
|
|
2839
3882
|
margin-top: 0.25em;
|
|
3883
|
+
padding: 0.5em !important;
|
|
2840
3884
|
}
|
|
2841
3885
|
|
|
2842
|
-
.
|
|
2843
|
-
|
|
3886
|
+
._toolView_fhwyo_7 pre {
|
|
3887
|
+
margin-bottom: 0;
|
|
2844
3888
|
}
|
|
2845
3889
|
|
|
2846
|
-
.
|
|
3890
|
+
._outputCode_fhwyo_16 {
|
|
2847
3891
|
font-size: 0.8rem !important;
|
|
2848
3892
|
overflow-wrap: anywhere !important;
|
|
2849
3893
|
white-space: pre-wrap !important;
|
|
@@ -2881,28 +3925,6 @@ a._citationLink_1ggvf_9:hover {
|
|
|
2881
3925
|
._container_1q66p_1 {
|
|
2882
3926
|
margin: 0.5em;
|
|
2883
3927
|
}
|
|
2884
|
-
.btn._toolButton_1y0d0_1 {
|
|
2885
|
-
background-color: var(--bs-light-border-subtle);
|
|
2886
|
-
}
|
|
2887
|
-
|
|
2888
|
-
._toolButton_1y0d0_1 i {
|
|
2889
|
-
margin-right: 0.5em;
|
|
2890
|
-
}
|
|
2891
|
-
|
|
2892
|
-
._toolButton_1y0d0_1:focus {
|
|
2893
|
-
outline: none;
|
|
2894
|
-
box-shadow:
|
|
2895
|
-
0 0 0 2px rgba(var(--bs-primary-rgb), 0.5),
|
|
2896
|
-
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
2897
|
-
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
2898
|
-
}
|
|
2899
|
-
|
|
2900
|
-
._latched_1y0d0_17,
|
|
2901
|
-
._latched_1y0d0_17:hover {
|
|
2902
|
-
box-shadow:
|
|
2903
|
-
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
2904
|
-
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
2905
|
-
}
|
|
2906
3928
|
._grid_hbkjn_1 {
|
|
2907
3929
|
display: grid;
|
|
2908
3930
|
grid-template-columns: 1fr 1fr 1fr;
|
|
@@ -3008,6 +4030,9 @@ a._citationLink_1ggvf_9:hover {
|
|
|
3008
4030
|
._hidden_e1pcq_40 {
|
|
3009
4031
|
opacity: 0 !important;
|
|
3010
4032
|
}
|
|
4033
|
+
._searchBox_fwn6a_1 {
|
|
4034
|
+
font-size: var(--inspect-font-size-smallest);
|
|
4035
|
+
}
|
|
3011
4036
|
._progressContainer_1cjjr_1 {
|
|
3012
4037
|
width: 100%;
|
|
3013
4038
|
display: flex;
|
|
@@ -3139,26 +4164,40 @@ a._citationLink_1ggvf_9:hover {
|
|
|
3139
4164
|
color: var(--bs-primary) !important;
|
|
3140
4165
|
margin-right: 0.3rem;
|
|
3141
4166
|
}
|
|
3142
|
-
.
|
|
4167
|
+
._result_mi1dv_1 {
|
|
3143
4168
|
display: inline-flex;
|
|
3144
4169
|
justify-content: center;
|
|
3145
4170
|
align-items: center;
|
|
3146
4171
|
border-radius: 5px;
|
|
3147
|
-
padding: 8px;
|
|
3148
|
-
width: 2rem;
|
|
4172
|
+
padding: 8px 4px;
|
|
3149
4173
|
height: 1rem;
|
|
3150
4174
|
font-size: 0.7rem;
|
|
3151
4175
|
}
|
|
3152
4176
|
|
|
3153
|
-
.
|
|
4177
|
+
._true_mi1dv_11 {
|
|
3154
4178
|
border: solid var(--bs-success) 1px;
|
|
3155
4179
|
color: var(--bs-success);
|
|
3156
4180
|
}
|
|
3157
4181
|
|
|
3158
|
-
.
|
|
4182
|
+
._false_mi1dv_16 {
|
|
3159
4183
|
border: solid var(--bs-danger) 1px;
|
|
3160
4184
|
color: var(--bs-danger);
|
|
3161
4185
|
}
|
|
4186
|
+
|
|
4187
|
+
._resultContainer_mi1dv_21 {
|
|
4188
|
+
display: grid;
|
|
4189
|
+
grid-template-columns: max-content max-content;
|
|
4190
|
+
align-items: center;
|
|
4191
|
+
column-gap: 0.2rem;
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
._targetValue_mi1dv_28 {
|
|
4195
|
+
white-space: nowrap;
|
|
4196
|
+
overflow: hidden;
|
|
4197
|
+
text-overflow: ellipsis;
|
|
4198
|
+
border: none;
|
|
4199
|
+
margin-left: 0.4rem;
|
|
4200
|
+
}
|
|
3162
4201
|
._boolean_1uivt_1 {
|
|
3163
4202
|
display: inline-flex;
|
|
3164
4203
|
justify-content: center;
|
|
@@ -5006,18 +6045,19 @@ span.ap-marker-container:hover span.ap-marker {
|
|
|
5006
6045
|
._scrollContainer_94id2_15 {
|
|
5007
6046
|
overflow-y: auto;
|
|
5008
6047
|
}
|
|
5009
|
-
.
|
|
6048
|
+
._container_gduid_1 {
|
|
5010
6049
|
display: grid;
|
|
5011
6050
|
grid-template-columns: 200px 1fr;
|
|
5012
6051
|
grid-template-rows: 1fr max-content;
|
|
5013
6052
|
height: 100%;
|
|
6053
|
+
width: 100%;
|
|
5014
6054
|
}
|
|
5015
6055
|
|
|
5016
|
-
.
|
|
6056
|
+
._footer_gduid_9 {
|
|
5017
6057
|
grid-column: 1 / -1;
|
|
5018
6058
|
}
|
|
5019
6059
|
|
|
5020
|
-
.
|
|
6060
|
+
._breadcrumbs_gduid_13 {
|
|
5021
6061
|
min-width: 600px !important;
|
|
5022
6062
|
}
|
|
5023
6063
|
._container_1ov9x_1 {
|
|
@@ -5169,8 +6209,10 @@ span.ap-marker-container:hover span.ap-marker {
|
|
|
5169
6209
|
._container_76qrl_7 {
|
|
5170
6210
|
padding: 0.5rem;
|
|
5171
6211
|
}
|
|
5172
|
-
.
|
|
6212
|
+
._container_1o5t7_1 {
|
|
5173
6213
|
padding: 1rem;
|
|
6214
|
+
width: 100%;
|
|
6215
|
+
height: 100%;
|
|
5174
6216
|
}
|
|
5175
6217
|
._list_5fj0m_1 {
|
|
5176
6218
|
width: 100%;
|
|
@@ -5202,47 +6244,45 @@ span.ap-marker-container:hover span.ap-marker {
|
|
|
5202
6244
|
overflow-y: hidden;
|
|
5203
6245
|
height: 100%;
|
|
5204
6246
|
}
|
|
5205
|
-
.
|
|
6247
|
+
._sidebar_uz8wg_1 {
|
|
5206
6248
|
border-right: solid 1px var(--bs-border-color);
|
|
5207
6249
|
padding: 1rem;
|
|
5208
6250
|
overflow-y: auto;
|
|
5209
6251
|
}
|
|
5210
6252
|
|
|
5211
|
-
.
|
|
5212
|
-
display:
|
|
5213
|
-
grid-template-columns: 1fr
|
|
6253
|
+
._container_uz8wg_7 {
|
|
6254
|
+
display: grid;
|
|
6255
|
+
grid-template-columns: max-content minmax(0, 1fr);
|
|
5214
6256
|
align-self: start;
|
|
5215
|
-
|
|
6257
|
+
gap: 0.5rem;
|
|
5216
6258
|
}
|
|
5217
6259
|
|
|
5218
|
-
.
|
|
6260
|
+
._colspan_uz8wg_14 {
|
|
5219
6261
|
grid-column: span 2;
|
|
5220
6262
|
}
|
|
5221
6263
|
|
|
5222
|
-
.
|
|
6264
|
+
._explanation_uz8wg_18 {
|
|
5223
6265
|
display: grid;
|
|
5224
6266
|
grid-template-columns: max-content 1fr;
|
|
5225
6267
|
column-gap: 1rem;
|
|
5226
6268
|
row-gap: 0.75rem;
|
|
5227
6269
|
}
|
|
5228
6270
|
|
|
5229
|
-
.
|
|
6271
|
+
._scanValue_uz8wg_25 {
|
|
5230
6272
|
padding-right: 0.5rem;
|
|
5231
6273
|
}
|
|
5232
6274
|
|
|
5233
|
-
.
|
|
5234
|
-
display:
|
|
5235
|
-
grid-template-columns: max-content auto;
|
|
5236
|
-
column-gap: 0.5rem;
|
|
6275
|
+
._values_uz8wg_29 {
|
|
6276
|
+
display: block;
|
|
5237
6277
|
}
|
|
5238
6278
|
|
|
5239
|
-
.
|
|
6279
|
+
._validation_uz8wg_33 {
|
|
5240
6280
|
margin-left: 1rem;
|
|
5241
6281
|
display: grid;
|
|
5242
6282
|
grid-template-columns: max-content max-content;
|
|
5243
6283
|
}
|
|
5244
6284
|
|
|
5245
|
-
.
|
|
6285
|
+
._validationLabel_uz8wg_39 {
|
|
5246
6286
|
padding-right: 0.5rem;
|
|
5247
6287
|
margin-top: 2px;
|
|
5248
6288
|
}
|
|
@@ -5280,7 +6320,7 @@ span.ap-marker-container:hover span.ap-marker {
|
|
|
5280
6320
|
._sixCol_1eu50_32 {
|
|
5281
6321
|
grid-template-columns: auto auto auto auto auto auto;
|
|
5282
6322
|
}
|
|
5283
|
-
.
|
|
6323
|
+
._container_1i4o7_1 {
|
|
5284
6324
|
display: grid;
|
|
5285
6325
|
grid-template-columns: max-content auto max-content;
|
|
5286
6326
|
align-items: center;
|
|
@@ -5288,14 +6328,18 @@ span.ap-marker-container:hover span.ap-marker {
|
|
|
5288
6328
|
margin-right: 1em;
|
|
5289
6329
|
}
|
|
5290
6330
|
|
|
5291
|
-
.
|
|
6331
|
+
._nav_1i4o7_9:hover:not(._disabled_1i4o7_9) {
|
|
5292
6332
|
cursor: pointer;
|
|
5293
6333
|
}
|
|
5294
6334
|
|
|
5295
|
-
.
|
|
6335
|
+
._disabled_1i4o7_9 {
|
|
5296
6336
|
opacity: 0.5;
|
|
5297
6337
|
pointer-events: none;
|
|
5298
6338
|
}
|
|
6339
|
+
|
|
6340
|
+
._center_1i4o7_18 {
|
|
6341
|
+
text-align: center;
|
|
6342
|
+
}
|
|
5299
6343
|
._root_1ewhq_1 {
|
|
5300
6344
|
height: 100vh;
|
|
5301
6345
|
display: grid;
|
|
@@ -5325,130 +6369,202 @@ span.ap-marker-container:hover span.ap-marker {
|
|
|
5325
6369
|
._fullHeight_1ewhq_27 {
|
|
5326
6370
|
height: 100%;
|
|
5327
6371
|
}
|
|
5328
|
-
.
|
|
6372
|
+
._container_1yw87_1 {
|
|
5329
6373
|
overflow-y: auto;
|
|
6374
|
+
width: 100%;
|
|
6375
|
+
height: 100%;
|
|
5330
6376
|
}
|
|
5331
|
-
.
|
|
5332
|
-
|
|
5333
|
-
|
|
6377
|
+
._eventRow_1j0jk_1 {
|
|
6378
|
+
display: grid;
|
|
6379
|
+
grid-template-columns: 10px 1fr;
|
|
6380
|
+
column-gap: 3px;
|
|
6381
|
+
cursor: pointer;
|
|
5334
6382
|
}
|
|
5335
6383
|
|
|
5336
|
-
.
|
|
5337
|
-
|
|
6384
|
+
._eventRow_1j0jk_1._selected_1j0jk_8 {
|
|
6385
|
+
font-weight: 800;
|
|
5338
6386
|
}
|
|
5339
6387
|
|
|
5340
|
-
.
|
|
5341
|
-
|
|
6388
|
+
._eventRow_1j0jk_1 ._toggle_1j0jk_12 {
|
|
6389
|
+
font-size: 0.7em;
|
|
6390
|
+
margin-top: 4px;
|
|
5342
6391
|
}
|
|
5343
6392
|
|
|
5344
|
-
.
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
|
|
6393
|
+
._eventLink_1j0jk_17 {
|
|
6394
|
+
color: var(--bs-body-color);
|
|
6395
|
+
text-decoration: none;
|
|
6396
|
+
cursor: pointer;
|
|
5348
6397
|
}
|
|
5349
6398
|
|
|
5350
|
-
.
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
0 0 0 2px rgba(var(--bs-primary-rgb), 0.5),
|
|
5354
|
-
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
5355
|
-
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
6399
|
+
._eventLink_1j0jk_17:hover {
|
|
6400
|
+
text-decoration: underline;
|
|
6401
|
+
color: var(--bs-link-hover-color);
|
|
5356
6402
|
}
|
|
5357
6403
|
|
|
5358
|
-
.
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
right: 0;
|
|
5363
|
-
bottom: 0;
|
|
5364
|
-
z-index: 1000;
|
|
6404
|
+
._label_1j0jk_28 {
|
|
6405
|
+
white-space: nowrap;
|
|
6406
|
+
overflow: hidden;
|
|
6407
|
+
text-overflow: ellipsis;
|
|
5365
6408
|
}
|
|
5366
6409
|
|
|
5367
|
-
.
|
|
5368
|
-
|
|
5369
|
-
top: 100%;
|
|
5370
|
-
left: 0;
|
|
5371
|
-
margin-top: 0.25rem;
|
|
5372
|
-
background: var(--bs-body-bg);
|
|
5373
|
-
border: 1px solid var(--bs-border-color);
|
|
5374
|
-
border-radius: 0.25rem;
|
|
5375
|
-
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
5376
|
-
z-index: 1001;
|
|
5377
|
-
min-width: 100%;
|
|
5378
|
-
overflow: hidden;
|
|
6410
|
+
._icon_1j0jk_34 {
|
|
6411
|
+
margin-right: 3px;
|
|
5379
6412
|
}
|
|
5380
6413
|
|
|
5381
|
-
.
|
|
5382
|
-
|
|
5383
|
-
width: 100%;
|
|
5384
|
-
padding: 0.25rem 0.75rem;
|
|
5385
|
-
background: none;
|
|
5386
|
-
border: none;
|
|
5387
|
-
text-align: left;
|
|
5388
|
-
cursor: pointer;
|
|
5389
|
-
color: var(--bs-body-color);
|
|
5390
|
-
white-space: nowrap;
|
|
5391
|
-
transition: background-color 0.15s ease-in-out;
|
|
6414
|
+
._progress_1j0jk_38 {
|
|
6415
|
+
margin-left: 0.3em !important;
|
|
5392
6416
|
}
|
|
5393
6417
|
|
|
5394
|
-
.
|
|
5395
|
-
|
|
6418
|
+
._popover_1j0jk_42 {
|
|
6419
|
+
min-width: 300px;
|
|
6420
|
+
max-width: 80%;
|
|
6421
|
+
}
|
|
6422
|
+
._node_1d5c2_1 {
|
|
6423
|
+
display: grid;
|
|
6424
|
+
column-gap: 0.3em;
|
|
6425
|
+
grid-template-columns: max-content 1fr;
|
|
5396
6426
|
}
|
|
5397
6427
|
|
|
5398
|
-
.
|
|
5399
|
-
|
|
6428
|
+
._panel_1d5c2_7 {
|
|
6429
|
+
margin-top: 0.65rem;
|
|
6430
|
+
overflow: visible;
|
|
5400
6431
|
}
|
|
5401
|
-
.
|
|
6432
|
+
._tabContainer_vrt5k_1 {
|
|
5402
6433
|
display: grid;
|
|
5403
6434
|
grid-template-rows: max-content minmax(0, 1fr);
|
|
5404
6435
|
height: 100%;
|
|
5405
6436
|
}
|
|
5406
6437
|
|
|
5407
|
-
.nav.
|
|
6438
|
+
.nav._tabs_vrt5k_7 {
|
|
5408
6439
|
border-bottom: solid 1px var(--bs-border-color);
|
|
5409
|
-
padding-bottom: 0.
|
|
6440
|
+
padding-bottom: 0.25rem;
|
|
5410
6441
|
padding-top: 0.5rem;
|
|
5411
6442
|
padding-left: 0.5rem;
|
|
5412
6443
|
padding-right: 0.5rem;
|
|
6444
|
+
position: sticky;
|
|
6445
|
+
z-index: 1001;
|
|
6446
|
+
top: 0;
|
|
6447
|
+
background-color: var(--bs-body-bg);
|
|
5413
6448
|
}
|
|
5414
6449
|
|
|
5415
|
-
.nav.
|
|
6450
|
+
.nav._tabs_vrt5k_7 .nav-link {
|
|
5416
6451
|
padding: 0.3rem 0.5rem;
|
|
5417
6452
|
font-size: var(--inspect-font-size-smallest) !important;
|
|
5418
6453
|
}
|
|
5419
6454
|
|
|
5420
|
-
.
|
|
5421
|
-
|
|
6455
|
+
._chatTab_vrt5k_24 > * > * {
|
|
6456
|
+
padding: 0.5rem;
|
|
5422
6457
|
}
|
|
5423
6458
|
|
|
5424
|
-
.
|
|
5425
|
-
padding:
|
|
6459
|
+
._chatTab_vrt5k_24 {
|
|
6460
|
+
padding-bottom: 50px;
|
|
5426
6461
|
}
|
|
5427
6462
|
|
|
5428
|
-
.
|
|
6463
|
+
._metadata_vrt5k_32 {
|
|
5429
6464
|
padding: 0.5rem;
|
|
5430
|
-
padding-bottom:
|
|
6465
|
+
padding-bottom: 50px;
|
|
5431
6466
|
}
|
|
5432
6467
|
|
|
5433
|
-
.
|
|
6468
|
+
._scrollable_vrt5k_37 {
|
|
5434
6469
|
overflow-y: auto;
|
|
5435
6470
|
min-height: 0;
|
|
5436
6471
|
height: 100%;
|
|
5437
6472
|
}
|
|
5438
6473
|
|
|
5439
|
-
.
|
|
6474
|
+
._eventsSeparator_vrt5k_43 {
|
|
6475
|
+
background-color: var(--bs-border-color);
|
|
6476
|
+
}
|
|
6477
|
+
|
|
6478
|
+
._eventsList_vrt5k_47 {
|
|
5440
6479
|
padding-bottom: 1rem;
|
|
5441
6480
|
}
|
|
5442
|
-
|
|
5443
|
-
|
|
6481
|
+
|
|
6482
|
+
._eventsContainer_vrt5k_51 {
|
|
5444
6483
|
display: grid;
|
|
5445
|
-
|
|
6484
|
+
width: 100%;
|
|
6485
|
+
grid-template-columns: 180px 1px 1fr;
|
|
6486
|
+
min-height: 100vh;
|
|
6487
|
+
transition: grid-template-columns 0.3s ease;
|
|
6488
|
+
padding-bottom: 44px;
|
|
5446
6489
|
}
|
|
5447
6490
|
|
|
5448
|
-
.
|
|
5449
|
-
|
|
6491
|
+
._eventsContainer_vrt5k_51._outlineCollapsed_vrt5k_60 {
|
|
6492
|
+
grid-template-columns: 28px 1px 1fr;
|
|
6493
|
+
}
|
|
6494
|
+
|
|
6495
|
+
._eventsTab_vrt5k_64 {
|
|
6496
|
+
display: flex;
|
|
6497
|
+
}
|
|
6498
|
+
|
|
6499
|
+
._eventsOutline_vrt5k_68 {
|
|
6500
|
+
padding-left: 0.5rem;
|
|
6501
|
+
padding-top: 0.8rem;
|
|
6502
|
+
}
|
|
6503
|
+
|
|
6504
|
+
._outlineToggle_vrt5k_73 {
|
|
6505
|
+
cursor: pointer;
|
|
6506
|
+
font-size: 0.8em;
|
|
6507
|
+
position: absolute;
|
|
6508
|
+
top: 0.5em;
|
|
6509
|
+
right: 0.5em;
|
|
6510
|
+
}
|
|
6511
|
+
|
|
6512
|
+
._tabTool_vrt5k_81 {
|
|
6513
|
+
font-size: var(--inspect-font-size-smallestest) !important;
|
|
6514
|
+
padding: 0.1rem 0.4rem !important;
|
|
6515
|
+
}
|
|
6516
|
+
._grid_1ml4j_1 {
|
|
5450
6517
|
display: grid;
|
|
5451
|
-
grid-template-
|
|
6518
|
+
grid-template-columns: 1fr 1fr;
|
|
6519
|
+
column-gap: 2em;
|
|
6520
|
+
row-gap: 0.15em;
|
|
6521
|
+
}
|
|
6522
|
+
|
|
6523
|
+
._row_1ml4j_8 {
|
|
6524
|
+
display: flex;
|
|
6525
|
+
align-items: center;
|
|
6526
|
+
gap: 0.5em;
|
|
6527
|
+
cursor: pointer;
|
|
6528
|
+
border-radius: var(--bs-border-radius);
|
|
6529
|
+
padding: 0.1em 0.4em;
|
|
6530
|
+
margin: 0 -0.4em;
|
|
6531
|
+
}
|
|
6532
|
+
|
|
6533
|
+
._row_1ml4j_8:hover {
|
|
6534
|
+
background-color: var(--bs-secondary-bg);
|
|
6535
|
+
}
|
|
6536
|
+
|
|
6537
|
+
._links_1ml4j_22 {
|
|
6538
|
+
display: flex;
|
|
6539
|
+
padding-bottom: 0.2em;
|
|
6540
|
+
margin-bottom: 0.4em;
|
|
6541
|
+
column-gap: 0.3em;
|
|
6542
|
+
border-bottom: solid 1px var(--bs-border-color);
|
|
6543
|
+
}
|
|
6544
|
+
|
|
6545
|
+
._links_1ml4j_22 a {
|
|
6546
|
+
cursor: pointer;
|
|
6547
|
+
text-decoration: none;
|
|
6548
|
+
color: var(--bs-link-color);
|
|
6549
|
+
}
|
|
6550
|
+
|
|
6551
|
+
._links_1ml4j_22 a:hover {
|
|
6552
|
+
color: var(--bs-link-hover-color);
|
|
6553
|
+
}
|
|
6554
|
+
|
|
6555
|
+
._selected_1ml4j_40 {
|
|
6556
|
+
font-weight: 600;
|
|
6557
|
+
}
|
|
6558
|
+
._container_godvv_1 {
|
|
6559
|
+
display: grid;
|
|
6560
|
+
grid-template-rows: max-content max-content 1fr;
|
|
6561
|
+
height: 100vh;
|
|
6562
|
+
}
|
|
6563
|
+
|
|
6564
|
+
._transcriptContainer_godvv_7 {
|
|
6565
|
+
overflow-y: auto;
|
|
6566
|
+
width: 100%;
|
|
6567
|
+
min-height: 0;
|
|
5452
6568
|
}
|
|
5453
6569
|
._headingGrid_1n1sm_1 {
|
|
5454
6570
|
display: grid;
|
|
@@ -5495,3 +6611,52 @@ span.ap-marker-container:hover span.ap-marker {
|
|
|
5495
6611
|
margin-top: 0.5rem;
|
|
5496
6612
|
margin-bottom: 1rem;
|
|
5497
6613
|
}
|
|
6614
|
+
.findBand {
|
|
6615
|
+
position: absolute;
|
|
6616
|
+
top: 0;
|
|
6617
|
+
right: 0;
|
|
6618
|
+
margin-right: 20%;
|
|
6619
|
+
z-index: 1060;
|
|
6620
|
+
color: var(--inspect-find-foreground);
|
|
6621
|
+
background-color: var(--inspect-find-background);
|
|
6622
|
+
font-size: 0.9rem;
|
|
6623
|
+
display: grid;
|
|
6624
|
+
grid-template-columns: auto auto auto auto auto;
|
|
6625
|
+
column-gap: 0.2em;
|
|
6626
|
+
padding: 0.2rem;
|
|
6627
|
+
border-bottom: solid 1px var(--bs-light-border-subtle);
|
|
6628
|
+
border-left: solid 1px var(--bs-light-border-subtle);
|
|
6629
|
+
border-right: solid 1px var(--bs-light-border-subtle);
|
|
6630
|
+
box-shadow: var(--bs-box-shadow);
|
|
6631
|
+
}
|
|
6632
|
+
|
|
6633
|
+
.findBand input {
|
|
6634
|
+
height: 2em;
|
|
6635
|
+
font-size: 0.9em;
|
|
6636
|
+
margin: 0.1rem;
|
|
6637
|
+
outline: none;
|
|
6638
|
+
border: solid 1px var(--inspect-input-border);
|
|
6639
|
+
color: var(--inspect-input-foreground);
|
|
6640
|
+
background: var(--inspect-input-background);
|
|
6641
|
+
}
|
|
6642
|
+
|
|
6643
|
+
#inspect-find-no-results {
|
|
6644
|
+
font-size: 0.9em;
|
|
6645
|
+
opacity: 0;
|
|
6646
|
+
margin-top: auto;
|
|
6647
|
+
margin-bottom: auto;
|
|
6648
|
+
margin-right: 0.5em;
|
|
6649
|
+
}
|
|
6650
|
+
|
|
6651
|
+
.findBand .btn.next,
|
|
6652
|
+
.findBand .btn.prev {
|
|
6653
|
+
padding: 0;
|
|
6654
|
+
font-size: var(--inspect-fond-size-larger);
|
|
6655
|
+
}
|
|
6656
|
+
|
|
6657
|
+
.findBand .btn.close {
|
|
6658
|
+
padding: 0;
|
|
6659
|
+
font-size: var(--inspect-font-size-title-secondary);
|
|
6660
|
+
margin-top: -0.1rem;
|
|
6661
|
+
margin-bottom: -0.1rem;
|
|
6662
|
+
}
|