inspect-ai 0.3.108__py3-none-any.whl → 0.3.109__py3-none-any.whl
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.
- inspect_ai/_eval/task/log.py +1 -1
- inspect_ai/_eval/task/run.py +1 -1
- inspect_ai/_util/dateutil.py +40 -0
- inspect_ai/_view/schema.py +11 -0
- inspect_ai/_view/www/CLAUDE.md +1 -1
- inspect_ai/_view/www/dist/assets/index.css +2068 -1796
- inspect_ai/_view/www/dist/assets/index.js +7951 -3643
- inspect_ai/_view/www/package.json +3 -2
- inspect_ai/_view/www/src/@types/log.d.ts +5 -5
- inspect_ai/_view/www/src/app/App.css +71 -4
- inspect_ai/_view/www/src/app/App.tsx +7 -0
- inspect_ai/_view/www/src/app/appearance/icons.ts +18 -2
- inspect_ai/_view/www/src/app/content/RenderedContent.tsx +7 -9
- inspect_ai/_view/www/src/app/log-list/LogItem.ts +18 -0
- inspect_ai/_view/www/src/app/log-list/LogListFooter.module.css +55 -0
- inspect_ai/_view/www/src/app/log-list/LogListFooter.tsx +67 -0
- inspect_ai/_view/www/src/app/log-list/LogPager.module.css +29 -0
- inspect_ai/_view/www/src/app/log-list/LogPager.tsx +134 -0
- inspect_ai/_view/www/src/app/log-list/LogsFilterInput.module.css +5 -0
- inspect_ai/_view/www/src/app/log-list/LogsFilterInput.tsx +31 -0
- inspect_ai/_view/www/src/app/log-list/LogsPanel.module.css +12 -0
- inspect_ai/_view/www/src/app/log-list/LogsPanel.tsx +178 -0
- inspect_ai/_view/www/src/app/log-list/grid/LogListGrid.module.css +115 -0
- inspect_ai/_view/www/src/app/log-list/grid/LogListGrid.tsx +304 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/CompletedDate.module.css +6 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/CompletedDate.tsx +64 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/EmptyCell.module.css +3 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/EmptyCell.tsx +7 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/FileName.module.css +20 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/FileName.tsx +52 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Icon.module.css +11 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Icon.tsx +35 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Model.module.css +6 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Model.tsx +34 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Score.module.css +6 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Score.tsx +61 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Status.module.css +15 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Status.tsx +95 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Task.module.css +20 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/Task.tsx +50 -0
- inspect_ai/_view/www/src/app/log-list/grid/columns/columns.ts +27 -0
- inspect_ai/_view/www/src/app/log-view/LogView.tsx +2 -5
- inspect_ai/_view/www/src/app/log-view/LogViewContainer.tsx +4 -30
- inspect_ai/_view/www/src/app/log-view/LogViewLayout.tsx +5 -30
- inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.tsx +4 -7
- inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/PrimaryBar.module.css +2 -0
- inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/PrimaryBar.tsx +3 -31
- inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/ResultsPanel.tsx +7 -57
- inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/ScoreGrid.tsx +2 -2
- inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/SecondaryBar.tsx +7 -1
- inspect_ai/_view/www/src/app/log-view/{navbar/Navbar.tsx → title-view/TitleView.tsx} +3 -6
- inspect_ai/_view/www/src/app/navbar/Navbar.module.css +57 -0
- inspect_ai/_view/www/src/app/navbar/Navbar.tsx +117 -0
- inspect_ai/_view/www/src/app/navbar/useBreadcrumbTruncation.ts +128 -0
- inspect_ai/_view/www/src/app/plan/DatasetDetailView.tsx +3 -3
- inspect_ai/_view/www/src/app/plan/DetailStep.tsx +6 -6
- inspect_ai/_view/www/src/app/plan/PlanDetailView.module.css +1 -0
- inspect_ai/_view/www/src/app/plan/ScorerDetailView.tsx +1 -1
- inspect_ai/_view/www/src/app/routing/AppRouter.tsx +28 -4
- inspect_ai/_view/www/src/app/routing/RouteDispatcher.tsx +28 -0
- inspect_ai/_view/www/src/app/routing/sampleNavigation.ts +76 -7
- inspect_ai/_view/www/src/app/routing/url.ts +193 -20
- inspect_ai/_view/www/src/app/samples/SampleDisplay.tsx +3 -17
- inspect_ai/_view/www/src/app/samples/descriptor/score/ScoreDescriptor.tsx +1 -1
- inspect_ai/_view/www/src/app/samples/transcript/SubtaskEventView.tsx +2 -2
- inspect_ai/_view/www/src/app/samples/transcript/TranscriptPanel.tsx +2 -2
- inspect_ai/_view/www/src/app/samples/transcript/outline/tree-visitors.ts +5 -0
- inspect_ai/_view/www/src/app/samples/transcript/transform/treeify.ts +26 -10
- inspect_ai/_view/www/src/app/types.ts +21 -1
- inspect_ai/_view/www/src/client/api/api-http.ts +2 -1
- inspect_ai/_view/www/src/client/api/api-shared.ts +0 -32
- inspect_ai/_view/www/src/client/api/client-api.ts +1 -1
- inspect_ai/_view/www/src/client/remote/remoteLogFile.ts +38 -6
- inspect_ai/_view/www/src/components/TextInput.module.css +45 -0
- inspect_ai/_view/www/src/components/TextInput.tsx +52 -0
- inspect_ai/_view/www/src/constants.ts +18 -0
- inspect_ai/_view/www/src/img/inspect-16.svg +10 -0
- inspect_ai/_view/www/src/img/inspect-back.svg +5 -0
- inspect_ai/_view/www/src/img/inspect-file.svg +26 -0
- inspect_ai/_view/www/src/img/inspect-forward.svg +7 -0
- inspect_ai/_view/www/src/img/inspect-home.svg +18 -0
- inspect_ai/_view/www/src/scoring/metrics.ts +75 -0
- inspect_ai/_view/www/src/scoring/scores.ts +19 -0
- inspect_ai/_view/www/src/scoring/types.ts +11 -0
- inspect_ai/_view/www/src/state/appSlice.ts +27 -7
- inspect_ai/_view/www/src/state/clientEvents.ts +73 -0
- inspect_ai/_view/www/src/state/clientEventsService.ts +105 -0
- inspect_ai/_view/www/src/state/hooks.ts +118 -1
- inspect_ai/_view/www/src/state/log.ts +19 -0
- inspect_ai/_view/www/src/state/logPolling.ts +3 -1
- inspect_ai/_view/www/src/state/logSlice.ts +9 -0
- inspect_ai/_view/www/src/state/logsSlice.ts +157 -15
- inspect_ai/_view/www/src/state/samplePolling.ts +4 -2
- inspect_ai/_view/www/src/tests/utils/path.test.ts +3 -3
- inspect_ai/_view/www/src/utils/evallog.ts +31 -0
- inspect_ai/_view/www/src/utils/path.ts +28 -0
- inspect_ai/_view/www/src/utils/uri.ts +49 -0
- inspect_ai/_view/www/yarn.lock +54 -17
- inspect_ai/analysis/beta/_dataframe/util.py +106 -10
- inspect_ai/log/_recorders/buffer/database.py +55 -16
- inspect_ai/model/_model.py +1 -1
- inspect_ai/model/_providers/providers.py +2 -2
- inspect_ai/model/_providers/vertex.py +3 -0
- inspect_ai/tool/_mcp/_mcp.py +6 -1
- inspect_ai/tool/_mcp/sampling.py +8 -1
- inspect_ai/tool/_tools/_bash_session.py +3 -6
- inspect_ai/tool/_tools/_web_browser/_web_browser.py +3 -8
- inspect_ai/util/_anyio.py +12 -3
- {inspect_ai-0.3.108.dist-info → inspect_ai-0.3.109.dist-info}/METADATA +2 -2
- {inspect_ai-0.3.108.dist-info → inspect_ai-0.3.109.dist-info}/RECORD +124 -94
- inspect_ai/_util/datetime.py +0 -10
- inspect_ai/_view/www/src/app/content/MetaDataView.module.css +0 -35
- inspect_ai/_view/www/src/app/content/MetaDataView.tsx +0 -101
- inspect_ai/_view/www/src/app/log-view/utils.ts +0 -34
- inspect_ai/_view/www/src/app/sidebar/EvalStatus.module.css +0 -15
- inspect_ai/_view/www/src/app/sidebar/EvalStatus.tsx +0 -72
- inspect_ai/_view/www/src/app/sidebar/LogDirectoryTitleView.module.css +0 -16
- inspect_ai/_view/www/src/app/sidebar/LogDirectoryTitleView.tsx +0 -70
- inspect_ai/_view/www/src/app/sidebar/Sidebar.module.css +0 -77
- inspect_ai/_view/www/src/app/sidebar/Sidebar.tsx +0 -119
- inspect_ai/_view/www/src/app/sidebar/SidebarLogEntry.module.css +0 -29
- inspect_ai/_view/www/src/app/sidebar/SidebarLogEntry.tsx +0 -96
- inspect_ai/_view/www/src/app/sidebar/SidebarScoreView.module.css +0 -23
- inspect_ai/_view/www/src/app/sidebar/SidebarScoreView.tsx +0 -44
- inspect_ai/_view/www/src/app/sidebar/SidebarScoresView.module.css +0 -35
- inspect_ai/_view/www/src/app/sidebar/SidebarScoresView.tsx +0 -63
- inspect_ai/_view/www/src/state/logsPolling.ts +0 -118
- /inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/ModelRolesView.module.css +0 -0
- /inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/ModelRolesView.tsx +0 -0
- /inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/ResultsPanel.module.css +0 -0
- /inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/RunningStatusPanel.module.css +0 -0
- /inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/RunningStatusPanel.tsx +0 -0
- /inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/ScoreGrid.module.css +0 -0
- /inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/SecondaryBar.module.css +0 -0
- /inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/StatusPanel.module.css +0 -0
- /inspect_ai/_view/www/src/app/log-view/{navbar → title-view}/StatusPanel.tsx +0 -0
- /inspect_ai/_view/www/src/app/log-view/{navbar/Navbar.module.css → title-view/TitleView.module.css} +0 -0
- {inspect_ai-0.3.108.dist-info → inspect_ai-0.3.109.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.108.dist-info → inspect_ai-0.3.109.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.108.dist-info → inspect_ai-0.3.109.dist-info}/licenses/LICENSE +0 -0
- {inspect_ai-0.3.108.dist-info → inspect_ai-0.3.109.dist-info}/top_level.txt +0 -0
@@ -14340,7 +14340,15 @@ body:not([class^="vscode-"]) button {
|
|
14340
14340
|
display: grid;
|
14341
14341
|
height: 100vh;
|
14342
14342
|
overflow-y: hidden;
|
14343
|
-
grid-template-rows: max-content max-content 1fr;
|
14343
|
+
grid-template-rows: max-content max-content max-content 1fr;
|
14344
|
+
}
|
14345
|
+
|
14346
|
+
a {
|
14347
|
+
color: var(--bs-link-color);
|
14348
|
+
}
|
14349
|
+
|
14350
|
+
a:hover {
|
14351
|
+
color: var(--bs-link-hover-color);
|
14344
14352
|
}
|
14345
14353
|
|
14346
14354
|
.modal {
|
@@ -14351,7 +14359,7 @@ body:not([class^="vscode-"]) button {
|
|
14351
14359
|
--bs-backdrop-opacity: 0.4;
|
14352
14360
|
}
|
14353
14361
|
|
14354
|
-
|
14362
|
+
.app-main-grid.single-file-mode {
|
14355
14363
|
grid-template-rows: max-content max-content 1fr;
|
14356
14364
|
}
|
14357
14365
|
|
@@ -14422,6 +14430,7 @@ body[class^="vscode-"] {
|
|
14422
14430
|
--bs-border-radius: 0;
|
14423
14431
|
--bs-border-radius-lg: 0;
|
14424
14432
|
--bs-body-bg: var(--vscode-editor-background);
|
14433
|
+
--bs-secondary-bg-subtle: var(--vscode-editorHoverWidget-background);
|
14425
14434
|
--bs-card-bg: var(--vscode-editor-background);
|
14426
14435
|
--bs-table-bg: var(--vscode-editor-background);
|
14427
14436
|
--bs-light-bg-subtle: var(--vscode-sideBar-background);
|
@@ -14437,12 +14446,15 @@ body[class^="vscode-"] {
|
|
14437
14446
|
--bs-btn-bg: var(--vscode-peekViewTitle-background);
|
14438
14447
|
--bs-primary: var(--vscode-banner-iconForeground);
|
14439
14448
|
--bs-nav-pills-link-active-bg: var(--vscode-banner-iconForeground);
|
14449
|
+
--bs-link-color: var(--vscode-textLink-foreground);
|
14450
|
+
--bs-link-hover-color: var(--vscode-textLink-activeForeground);
|
14440
14451
|
--bs-secondary: var(--vscode-breadcrumb-foreground);
|
14441
14452
|
--bs-secondary-bg: var(--vscode-list-inactiveSelectionBackground);
|
14442
14453
|
--bs-border-color: var(--vscode-editorGroup-border);
|
14443
14454
|
--bs-card-border-color: var(--vscode-editorGroup-border);
|
14444
14455
|
--bs-warning-bg-subtle: var(--vscode-inputValidation-warningBackground);
|
14445
14456
|
--bs-warning-text-emphasis: var(--vscode-input-foreground);
|
14457
|
+
--bs-breadcrumb-divider-color: var(--vscode-foreground);
|
14446
14458
|
--inspect-find-background: var(--vscode-editorWidget-background);
|
14447
14459
|
--inspect-find-foreground: var(--vscode-editorWidget-foreground);
|
14448
14460
|
--inspect-input-background: var(--vscode-input-background);
|
@@ -14615,6 +14627,10 @@ body[class^="vscode-"] .sidebar .list-group {
|
|
14615
14627
|
--bs-list-group-active-color: var(--vscode-sideBarSectionHeader-foreground);
|
14616
14628
|
}
|
14617
14629
|
|
14630
|
+
body[class^="vscode-"] .breadcrumb-item {
|
14631
|
+
--bs-breadcrumb-divider-color: var(--vscode-foreground);
|
14632
|
+
}
|
14633
|
+
|
14618
14634
|
body[class^="vscode-"] div.ap-control-bar .ap-fullscreen-button {
|
14619
14635
|
display: none;
|
14620
14636
|
}
|
@@ -15312,11 +15328,11 @@ ul.jsondiffpatch-textdiff {
|
|
15312
15328
|
/* prism-custom.css */
|
15313
15329
|
code[class*="language-"],
|
15314
15330
|
pre[class*="language-"] {
|
15315
|
-
font-size: 0.
|
15331
|
+
font-size: 0.7rem !important;
|
15316
15332
|
}
|
15317
15333
|
|
15318
15334
|
.token {
|
15319
|
-
font-size: 0.
|
15335
|
+
font-size: 0.7rem !important;
|
15320
15336
|
}
|
15321
15337
|
|
15322
15338
|
/* PrismJS 1.29.0 https://prismjs.com/download.html#themes=prism-dark&languages=markup+css+clike+javascript+bash+python */
|
@@ -15427,6 +15443,57 @@ pre[class*="language-"] {
|
|
15427
15443
|
color: red;
|
15428
15444
|
}
|
15429
15445
|
/* END PrismJS */
|
15446
|
+
|
15447
|
+
/* SVG Icon styles - following Bootstrap Icons pattern */
|
15448
|
+
.inspect-icon-16::before {
|
15449
|
+
content: "";
|
15450
|
+
width: 1em;
|
15451
|
+
height: 1em;
|
15452
|
+
display: inline-block;
|
15453
|
+
vertical-align: middle;
|
15454
|
+
mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 12.33 12.33%22%3E %3Cg id%3D%22Layer_2%22%3E %3Cpath class%3D%22cls-1%22 d%3D%22M5.05%2C12.16c-.14-.11-.24-.27-.29-.48l-.26-1.12-.28-.1-.98.61c-.18.11-.36.16-.54.13s-.35-.11-.5-.25l-.82-.82c-.15-.15-.24-.31-.26-.5s.03-.36.13-.54l.62-.98-.1-.27-1.12-.27c-.2-.05-.36-.14-.48-.29s-.17-.32-.17-.52v-1.17c0-.21.06-.38.17-.52s.27-.24.48-.29l1.12-.26.11-.29-.62-.98c-.11-.17-.16-.35-.14-.53s.11-.35.25-.5l.82-.83c.15-.14.31-.22.5-.25s.36.02.54.13l.98.62.29-.11.26-1.13c.05-.2.14-.36.29-.48s.32-.17.53-.17h1.18c.21%2C0%2C.38.06.52.17s.24.27.28.48l.26%2C1.13.29.11.98-.62c.17-.11.35-.15.53-.13s.35.11.49.25l.83.83c.14.15.23.31.25.5s-.02.36-.13.53l-.62.98.11.29%2C1.12.26c.2.05.36.15.48.29s.17.32.17.52v1.17c0%2C.2-.06.38-.17.52s-.27.24-.48.29l-1.12.27-.11.27.62.98c.11.18.15.36.13.54s-.11.35-.25.5l-.83.82c-.14.14-.31.23-.49.25s-.36-.02-.54-.13l-.98-.61-.28.1-.26%2C1.12c-.05.21-.14.37-.28.48s-.32.17-.52.17h-1.18c-.21%2C0-.38-.06-.53-.17ZM6.69%2C11.63c.14%2C0%2C.22-.07.24-.2l.34-1.42c.16-.04.31-.09.46-.16s.28-.12.4-.19l1.24.77c.11.07.22.06.32-.04l.71-.71c.09-.09.1-.2.03-.32l-.77-1.24c.06-.12.12-.25.18-.4s.11-.3.16-.46l1.43-.33c.13-.03.2-.11.2-.25v-1.02c0-.13-.07-.21-.2-.25l-1.42-.33c-.04-.17-.1-.33-.16-.48s-.12-.28-.18-.39l.77-1.24c.07-.12.06-.23-.03-.32l-.71-.71c-.1-.1-.21-.11-.33-.04l-1.24.77c-.12-.06-.25-.12-.4-.18s-.3-.11-.47-.16l-.34-1.43c-.02-.13-.1-.2-.24-.2h-1.03c-.14%2C0-.22.07-.25.2l-.33%2C1.42c-.16.04-.31.1-.47.16s-.29.12-.41.19l-1.24-.76c-.11-.07-.22-.06-.32.04l-.72.71c-.09.09-.1.2-.03.32l.77%2C1.24c-.05.11-.1.24-.17.39s-.12.31-.16.48l-1.42.33c-.13.03-.19.11-.19.25v1.02c0%2C.14.06.22.19.25l1.43.33c.04.16.1.31.16.46s.12.28.18.4l-.77%2C1.24c-.07.12-.06.22.04.32l.71.71c.11.1.21.12.32.04l1.24-.77c.12.07.26.13.4.19s.3.11.47.16l.33%2C1.42c.03.13.11.2.25.2h1.03Z%22%2F%3E %3C%2Fg%3E %3Cg id%3D%22Layer_3%22%3E %3Crect class%3D%22cls-1%22 x%3D%225.41%22 y%3D%225.36%22 width%3D%221.5%22 height%3D%223.75%22 rx%3D%22.34%22 ry%3D%22.34%22%2F%3E %3Ccircle class%3D%22cls-1%22 cx%3D%226.12%22 cy%3D%224%22 r%3D%22.92%22%2F%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15455
|
+
-webkit-mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 12.33 12.33%22%3E %3Cg id%3D%22Layer_2%22%3E %3Cpath class%3D%22cls-1%22 d%3D%22M5.05%2C12.16c-.14-.11-.24-.27-.29-.48l-.26-1.12-.28-.1-.98.61c-.18.11-.36.16-.54.13s-.35-.11-.5-.25l-.82-.82c-.15-.15-.24-.31-.26-.5s.03-.36.13-.54l.62-.98-.1-.27-1.12-.27c-.2-.05-.36-.14-.48-.29s-.17-.32-.17-.52v-1.17c0-.21.06-.38.17-.52s.27-.24.48-.29l1.12-.26.11-.29-.62-.98c-.11-.17-.16-.35-.14-.53s.11-.35.25-.5l.82-.83c.15-.14.31-.22.5-.25s.36.02.54.13l.98.62.29-.11.26-1.13c.05-.2.14-.36.29-.48s.32-.17.53-.17h1.18c.21%2C0%2C.38.06.52.17s.24.27.28.48l.26%2C1.13.29.11.98-.62c.17-.11.35-.15.53-.13s.35.11.49.25l.83.83c.14.15.23.31.25.5s-.02.36-.13.53l-.62.98.11.29%2C1.12.26c.2.05.36.15.48.29s.17.32.17.52v1.17c0%2C.2-.06.38-.17.52s-.27.24-.48.29l-1.12.27-.11.27.62.98c.11.18.15.36.13.54s-.11.35-.25.5l-.83.82c-.14.14-.31.23-.49.25s-.36-.02-.54-.13l-.98-.61-.28.1-.26%2C1.12c-.05.21-.14.37-.28.48s-.32.17-.52.17h-1.18c-.21%2C0-.38-.06-.53-.17ZM6.69%2C11.63c.14%2C0%2C.22-.07.24-.2l.34-1.42c.16-.04.31-.09.46-.16s.28-.12.4-.19l1.24.77c.11.07.22.06.32-.04l.71-.71c.09-.09.1-.2.03-.32l-.77-1.24c.06-.12.12-.25.18-.4s.11-.3.16-.46l1.43-.33c.13-.03.2-.11.2-.25v-1.02c0-.13-.07-.21-.2-.25l-1.42-.33c-.04-.17-.1-.33-.16-.48s-.12-.28-.18-.39l.77-1.24c.07-.12.06-.23-.03-.32l-.71-.71c-.1-.1-.21-.11-.33-.04l-1.24.77c-.12-.06-.25-.12-.4-.18s-.3-.11-.47-.16l-.34-1.43c-.02-.13-.1-.2-.24-.2h-1.03c-.14%2C0-.22.07-.25.2l-.33%2C1.42c-.16.04-.31.1-.47.16s-.29.12-.41.19l-1.24-.76c-.11-.07-.22-.06-.32.04l-.72.71c-.09.09-.1.2-.03.32l.77%2C1.24c-.05.11-.1.24-.17.39s-.12.31-.16.48l-1.42.33c-.13.03-.19.11-.19.25v1.02c0%2C.14.06.22.19.25l1.43.33c.04.16.1.31.16.46s.12.28.18.4l-.77%2C1.24c-.07.12-.06.22.04.32l.71.71c.11.1.21.12.32.04l1.24-.77c.12.07.26.13.4.19s.3.11.47.16l.33%2C1.42c.03.13.11.2.25.2h1.03Z%22%2F%3E %3C%2Fg%3E %3Cg id%3D%22Layer_3%22%3E %3Crect class%3D%22cls-1%22 x%3D%225.41%22 y%3D%225.36%22 width%3D%221.5%22 height%3D%223.75%22 rx%3D%22.34%22 ry%3D%22.34%22%2F%3E %3Ccircle class%3D%22cls-1%22 cx%3D%226.12%22 cy%3D%224%22 r%3D%22.92%22%2F%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15456
|
+
}
|
15457
|
+
|
15458
|
+
.inspect-icon-back::before {
|
15459
|
+
content: "";
|
15460
|
+
width: 1em;
|
15461
|
+
height: 1em;
|
15462
|
+
display: inline-block;
|
15463
|
+
vertical-align: middle;
|
15464
|
+
mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22Layer_2%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 5.77 9.73%22%3E %3Crect class%3D%22cls-1%22 x%3D%22-.82%22 y%3D%221.97%22 width%3D%227.07%22 height%3D%221.5%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(-1.13 2.72) rotate(-45)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%222.14%22 y%3D%223.08%22 width%3D%221.5%22 height%3D%227.54%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(-4 4.05) rotate(-45)%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15465
|
+
-webkit-mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22Layer_2%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 5.77 9.73%22%3E %3Crect class%3D%22cls-1%22 x%3D%22-.82%22 y%3D%221.97%22 width%3D%227.07%22 height%3D%221.5%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(-1.13 2.72) rotate(-45)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%222.14%22 y%3D%223.08%22 width%3D%221.5%22 height%3D%227.54%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(-4 4.05) rotate(-45)%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15466
|
+
}
|
15467
|
+
|
15468
|
+
.inspect-icon-forward::before {
|
15469
|
+
content: "";
|
15470
|
+
width: 1em;
|
15471
|
+
height: 1em;
|
15472
|
+
display: inline-block;
|
15473
|
+
vertical-align: middle;
|
15474
|
+
mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22Layer_2%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 5.77 9.73%22%3E %3Cg transform%3D%22scale(-1%2C 1) translate(-5.77%2C 0)%22%3E %3Crect class%3D%22cls-1%22 x%3D%22-.82%22 y%3D%221.97%22 width%3D%227.07%22 height%3D%221.5%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(-1.13 2.72) rotate(-45)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%222.14%22 y%3D%223.08%22 width%3D%221.5%22 height%3D%227.54%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(-4 4.05) rotate(-45)%22%2F%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15475
|
+
-webkit-mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22Layer_2%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 5.77 9.73%22%3E %3Cg transform%3D%22scale(-1%2C 1) translate(-5.77%2C 0)%22%3E %3Crect class%3D%22cls-1%22 x%3D%22-.82%22 y%3D%221.97%22 width%3D%227.07%22 height%3D%221.5%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(-1.13 2.72) rotate(-45)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%222.14%22 y%3D%223.08%22 width%3D%221.5%22 height%3D%227.54%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(-4 4.05) rotate(-45)%22%2F%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15476
|
+
}
|
15477
|
+
|
15478
|
+
.inspect-icon-file::before {
|
15479
|
+
content: "";
|
15480
|
+
width: 1em;
|
15481
|
+
height: 1em;
|
15482
|
+
display: inline-block;
|
15483
|
+
vertical-align: middle;
|
15484
|
+
mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 12 15%22%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill%3A none%3B stroke%3A currentColor%3B stroke-miterlimit%3A 10%3B %7D .cls-2 %7B fill%3A currentColor%3B %7D %3C%2Fstyle%3E %3C%2Fdefs%3E %3Cg id%3D%22Layer_1%22%3E %3Cpath class%3D%22cls-2%22 d%3D%22M5.26%2C11.55c-.1-.07-.16-.18-.19-.32l-.17-.74-.19-.07-.65.4c-.12.07-.24.1-.36.09s-.23-.07-.33-.17l-.54-.54c-.1-.1-.16-.21-.17-.33s.02-.24.09-.36l.41-.65-.07-.18-.74-.18c-.13-.03-.24-.09-.32-.19s-.11-.21-.11-.35v-.77c0-.14.04-.25.11-.35s.18-.16.32-.19l.74-.17.07-.19-.41-.65c-.07-.11-.11-.23-.09-.35s.07-.23.17-.33l.54-.55c.1-.09.21-.15.33-.16s.24.01.35.09l.65.41.19-.07.17-.75c.03-.13.09-.24.19-.32s.21-.11.35-.11h.78c.14%2C0%2C.25.04.35.11s.16.18.19.32l.17.75.19.07.65-.41c.11-.07.23-.1.35-.09s.23.07.33.16l.55.55c.1.1.15.21.17.33s-.01.24-.09.35l-.41.65.07.19.74.17c.13.03.24.1.32.19s.11.21.11.35v.77c0%2C.13-.04.25-.11.35s-.18.16-.32.19l-.74.18-.07.18.41.65c.07.12.1.24.09.36s-.07.23-.17.33l-.55.54c-.1.1-.2.15-.33.17s-.24-.01-.36-.09l-.65-.4-.19.07-.17.74c-.03.14-.09.24-.19.32s-.21.11-.35.11h-.78c-.14%2C0-.25-.04-.35-.11ZM6.34%2C11.2c.09%2C0%2C.14-.04.16-.13l.23-.94c.11-.03.21-.06.31-.1s.19-.08.26-.13l.82.51c.07.05.14.04.21-.03l.47-.47c.06-.06.07-.13.02-.21l-.51-.82c.04-.08.08-.17.12-.27s.07-.2.1-.3l.95-.22c.09-.02.13-.07.13-.16v-.67c0-.09-.04-.14-.13-.16l-.94-.22c-.03-.11-.06-.22-.11-.32s-.08-.18-.12-.26l.51-.82c.05-.08.04-.15-.02-.21l-.47-.47c-.07-.06-.14-.07-.22-.03l-.82.51c-.08-.04-.16-.08-.26-.12s-.2-.08-.31-.11l-.23-.95c-.02-.09-.07-.13-.16-.13h-.68c-.09%2C0-.14.04-.16.13l-.22.94c-.1.03-.21.06-.31.1s-.19.08-.27.12l-.82-.5c-.07-.05-.15-.04-.21.03l-.48.47c-.06.06-.07.13-.02.21l.51.82c-.03.07-.07.16-.11.26s-.08.2-.11.32l-.94.22c-.09.02-.13.07-.13.16v.67c0%2C.09.04.14.13.16l.95.22c.03.11.06.21.1.3s.08.19.12.27l-.51.82c-.05.08-.04.15.02.21l.47.47c.07.07.14.08.21.03l.82-.51c.08.04.17.09.27.13s.2.07.31.1l.22.94c.02.09.07.13.16.13h.68Z%22%2F%3E %3C%2Fg%3E %3Cg id%3D%22Layer_3%22%3E %3Crect class%3D%22cls-2%22 x%3D%225.46%22 y%3D%227.01%22 width%3D%221.07%22 height%3D%222.68%22 rx%3D%22.34%22 ry%3D%22.34%22%2F%3E %3Ccircle class%3D%22cls-2%22 cx%3D%226%22 cy%3D%226.04%22 r%3D%22.65%22%2F%3E %3C%2Fg%3E %3Cg id%3D%22Layer_2%22%3E %3Crect class%3D%22cls-1%22 x%3D%22.5%22 y%3D%22.5%22 width%3D%2211%22 height%3D%2214%22 rx%3D%221%22 ry%3D%221%22%2F%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15485
|
+
-webkit-mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 12 15%22%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill%3A none%3B stroke%3A currentColor%3B stroke-miterlimit%3A 10%3B %7D .cls-2 %7B fill%3A currentColor%3B %7D %3C%2Fstyle%3E %3C%2Fdefs%3E %3Cg id%3D%22Layer_1%22%3E %3Cpath class%3D%22cls-2%22 d%3D%22M5.26%2C11.55c-.1-.07-.16-.18-.19-.32l-.17-.74-.19-.07-.65.4c-.12.07-.24.1-.36.09s-.23-.07-.33-.17l-.54-.54c-.1-.1-.16-.21-.17-.33s.02-.24.09-.36l.41-.65-.07-.18-.74-.18c-.13-.03-.24-.09-.32-.19s-.11-.21-.11-.35v-.77c0-.14.04-.25.11-.35s.18-.16.32-.19l.74-.17.07-.19-.41-.65c-.07-.11-.11-.23-.09-.35s.07-.23.17-.33l.54-.55c.1-.09.21-.15.33-.16s.24.01.35.09l.65.41.19-.07.17-.75c.03-.13.09-.24.19-.32s.21-.11.35-.11h.78c.14%2C0%2C.25.04.35.11s.16.18.19.32l.17.75.19.07.65-.41c.11-.07.23-.1.35-.09s.23.07.33.16l.55.55c.1.1.15.21.17.33s-.01.24-.09.35l-.41.65.07.19.74.17c.13.03.24.1.32.19s.11.21.11.35v.77c0%2C.13-.04.25-.11.35s-.18.16-.32.19l-.74.18-.07.18.41.65c.07.12.1.24.09.36s-.07.23-.17.33l-.55.54c-.1.1-.2.15-.33.17s-.24-.01-.36-.09l-.65-.4-.19.07-.17.74c-.03.14-.09.24-.19.32s-.21.11-.35.11h-.78c-.14%2C0-.25-.04-.35-.11ZM6.34%2C11.2c.09%2C0%2C.14-.04.16-.13l.23-.94c.11-.03.21-.06.31-.1s.19-.08.26-.13l.82.51c.07.05.14.04.21-.03l.47-.47c.06-.06.07-.13.02-.21l-.51-.82c.04-.08.08-.17.12-.27s.07-.2.1-.3l.95-.22c.09-.02.13-.07.13-.16v-.67c0-.09-.04-.14-.13-.16l-.94-.22c-.03-.11-.06-.22-.11-.32s-.08-.18-.12-.26l.51-.82c.05-.08.04-.15-.02-.21l-.47-.47c-.07-.06-.14-.07-.22-.03l-.82.51c-.08-.04-.16-.08-.26-.12s-.2-.08-.31-.11l-.23-.95c-.02-.09-.07-.13-.16-.13h-.68c-.09%2C0-.14.04-.16.13l-.22.94c-.1.03-.21.06-.31.1s-.19.08-.27.12l-.82-.5c-.07-.05-.15-.04-.21.03l-.48.47c-.06.06-.07.13-.02.21l.51.82c-.03.07-.07.16-.11.26s-.08.2-.11.32l-.94.22c-.09.02-.13.07-.13.16v.67c0%2C.09.04.14.13.16l.95.22c.03.11.06.21.1.3s.08.19.12.27l-.51.82c-.05.08-.04.15.02.21l.47.47c.07.07.14.08.21.03l.82-.51c.08.04.17.09.27.13s.2.07.31.1l.22.94c.02.09.07.13.16.13h.68Z%22%2F%3E %3C%2Fg%3E %3Cg id%3D%22Layer_3%22%3E %3Crect class%3D%22cls-2%22 x%3D%225.46%22 y%3D%227.01%22 width%3D%221.07%22 height%3D%222.68%22 rx%3D%22.34%22 ry%3D%22.34%22%2F%3E %3Ccircle class%3D%22cls-2%22 cx%3D%226%22 cy%3D%226.04%22 r%3D%22.65%22%2F%3E %3C%2Fg%3E %3Cg id%3D%22Layer_2%22%3E %3Crect class%3D%22cls-1%22 x%3D%22.5%22 y%3D%22.5%22 width%3D%2211%22 height%3D%2214%22 rx%3D%221%22 ry%3D%221%22%2F%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15486
|
+
}
|
15487
|
+
|
15488
|
+
.inspect-icon-home::before {
|
15489
|
+
content: "";
|
15490
|
+
width: 1em;
|
15491
|
+
height: 1em;
|
15492
|
+
display: inline-block;
|
15493
|
+
vertical-align: middle;
|
15494
|
+
mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22Layer_2%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 15.62 14.2%22%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill%3A %23010101%3B %7D %3C%2Fstyle%3E %3C%2Fdefs%3E %3Crect class%3D%22cls-1%22 x%3D%2212.78%22 y%3D%225.56%22 width%3D%221.5%22 height%3D%228.48%22 rx%3D%22.75%22 ry%3D%22.75%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%221.78%22 y%3D%225.08%22 width%3D%221.5%22 height%3D%228.95%22 rx%3D%22.75%22 ry%3D%22.75%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%227.29%22 y%3D%227.33%22 width%3D%221.5%22 height%3D%2212.24%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(21.49 5.42) rotate(90)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%223.53%22 y%3D%22-1.55%22 width%3D%221.5%22 height%3D%2211%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(4.35 -1.87) rotate(47.95)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%2210.59%22 y%3D%22-1.57%22 width%3D%221.5%22 height%3D%2211%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(21.85 -1.86) rotate(132.05)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%228.78%22 y%3D%227.74%22 width%3D%221%22 height%3D%225.47%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%226.28%22 y%3D%227.72%22 width%3D%221%22 height%3D%225.49%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%226.29%22 y%3D%227.72%22 width%3D%223.46%22 height%3D%221%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15495
|
+
-webkit-mask: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg id%3D%22Layer_2%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 15.62 14.2%22%3E %3Cdefs%3E %3Cstyle%3E .cls-1 %7B fill%3A %23010101%3B %7D %3C%2Fstyle%3E %3C%2Fdefs%3E %3Crect class%3D%22cls-1%22 x%3D%2212.78%22 y%3D%225.56%22 width%3D%221.5%22 height%3D%228.48%22 rx%3D%22.75%22 ry%3D%22.75%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%221.78%22 y%3D%225.08%22 width%3D%221.5%22 height%3D%228.95%22 rx%3D%22.75%22 ry%3D%22.75%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%227.29%22 y%3D%227.33%22 width%3D%221.5%22 height%3D%2212.24%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(21.49 5.42) rotate(90)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%223.53%22 y%3D%22-1.55%22 width%3D%221.5%22 height%3D%2211%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(4.35 -1.87) rotate(47.95)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%2210.59%22 y%3D%22-1.57%22 width%3D%221.5%22 height%3D%2211%22 rx%3D%22.75%22 ry%3D%22.75%22 transform%3D%22translate(21.85 -1.86) rotate(132.05)%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%228.78%22 y%3D%227.74%22 width%3D%221%22 height%3D%225.47%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%226.28%22 y%3D%227.72%22 width%3D%221%22 height%3D%225.49%22%2F%3E %3Crect class%3D%22cls-1%22 x%3D%226.29%22 y%3D%227.72%22 width%3D%223.46%22 height%3D%221%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
|
15496
|
+
}
|
15430
15497
|
.error-panel {
|
15431
15498
|
flex-direction: column;
|
15432
15499
|
min-height: 10rem;
|
@@ -15464,6 +15531,44 @@ pre[class*="language-"] {
|
|
15464
15531
|
margin-right: 0.5rem;
|
15465
15532
|
color: var(--bs-red);
|
15466
15533
|
}
|
15534
|
+
._wrapper_1tajk_1 {
|
15535
|
+
display: flex;
|
15536
|
+
align-items: center;
|
15537
|
+
justify-content: center;
|
15538
|
+
width: 100%;
|
15539
|
+
height: 0;
|
15540
|
+
overflow-y: visible;
|
15541
|
+
overflow-x: visible;
|
15542
|
+
text-align: center;
|
15543
|
+
}
|
15544
|
+
|
15545
|
+
._container_1tajk_12 {
|
15546
|
+
width: 100%;
|
15547
|
+
height: 1px;
|
15548
|
+
background-color: transparent;
|
15549
|
+
position: sticky;
|
15550
|
+
overflow: hidden;
|
15551
|
+
z-index: 1200;
|
15552
|
+
}
|
15553
|
+
|
15554
|
+
._animate_1tajk_21 {
|
15555
|
+
width: 5%;
|
15556
|
+
height: 1px;
|
15557
|
+
animation: _leftToRight_1tajk_1 2s linear infinite;
|
15558
|
+
background-color: #3b82f6;
|
15559
|
+
position: absolute;
|
15560
|
+
left: 0;
|
15561
|
+
top: 0;
|
15562
|
+
}
|
15563
|
+
|
15564
|
+
@keyframes _leftToRight_1tajk_1 {
|
15565
|
+
0% {
|
15566
|
+
transform: translateX(-100%);
|
15567
|
+
}
|
15568
|
+
100% {
|
15569
|
+
transform: translateX(2000%);
|
15570
|
+
}
|
15571
|
+
}
|
15467
15572
|
._circle_qymy9_1 {
|
15468
15573
|
font-family: "Consola Regular";
|
15469
15574
|
width: 40px;
|
@@ -15864,41 +15969,17 @@ a._citationLink_t2k1z_9:hover {
|
|
15864
15969
|
._container_rmdrx_16 {
|
15865
15970
|
padding: 0.4em 0.4em 0.4em 0.4em;
|
15866
15971
|
}
|
15867
|
-
.
|
15868
|
-
|
15869
|
-
|
15870
|
-
|
15871
|
-
|
15872
|
-
|
15873
|
-
._th_1t3ts_7 {
|
15874
|
-
padding: 0;
|
15875
|
-
}
|
15876
|
-
|
15877
|
-
._cell_1t3ts_11 {
|
15878
|
-
padding: 0em 0.7em 0.3em 0em !important;
|
15879
|
-
}
|
15880
|
-
|
15881
|
-
._compact_1t3ts_15 ._cell_1t3ts_11 {
|
15882
|
-
padding: 0;
|
15883
|
-
}
|
15884
|
-
|
15885
|
-
._cellKey_1t3ts_19 {
|
15886
|
-
font-weight: 400;
|
15887
|
-
padding-right: 1em;
|
15888
|
-
white-space: nowrap;
|
15972
|
+
._grid_14885_1 {
|
15973
|
+
display: grid;
|
15974
|
+
grid-template-columns: max-content auto;
|
15975
|
+
column-gap: 0.5em;
|
15976
|
+
row-gap: 0.2em;
|
15889
15977
|
}
|
15890
15978
|
|
15891
|
-
.
|
15979
|
+
._cell_14885_8 {
|
15892
15980
|
font-weight: 400;
|
15893
|
-
padding-right: 0.2em;
|
15894
15981
|
white-space: nowrap;
|
15895
15982
|
}
|
15896
|
-
|
15897
|
-
._cellValue_1t3ts_31 {
|
15898
|
-
font-weight: 300;
|
15899
|
-
white-space: pre-wrap;
|
15900
|
-
word-wrap: anywhere;
|
15901
|
-
}
|
15902
15983
|
._query_seqs2_1 {
|
15903
15984
|
margin-bottom: 0.5rem;
|
15904
15985
|
font-weight: 500;
|
@@ -15953,287 +16034,459 @@ a._citationLink_t2k1z_9:hover {
|
|
15953
16034
|
margin-right: 0.3em;
|
15954
16035
|
margin-left: 0.2em;
|
15955
16036
|
}
|
15956
|
-
.
|
15957
|
-
|
15958
|
-
|
15959
|
-
right: 0;
|
15960
|
-
margin-right: 20%;
|
15961
|
-
z-index: 1060;
|
15962
|
-
color: var(--inspect-find-foreground);
|
15963
|
-
background-color: var(--inspect-find-background);
|
15964
|
-
font-size: 0.9rem;
|
16037
|
+
._header_1fu9w_1 {
|
16038
|
+
border-bottom: solid var(--bs-border-color) 1px;
|
16039
|
+
background: var(--bs-light);
|
15965
16040
|
display: grid;
|
15966
|
-
grid-template-columns:
|
15967
|
-
|
15968
|
-
padding: 0.
|
15969
|
-
|
15970
|
-
|
15971
|
-
border-right: solid 1px var(--bs-light-border-subtle);
|
15972
|
-
box-shadow: var(--bs-box-shadow);
|
15973
|
-
}
|
15974
|
-
|
15975
|
-
.findBand input {
|
15976
|
-
height: 2em;
|
15977
|
-
font-size: 0.9em;
|
15978
|
-
margin: 0.1rem;
|
15979
|
-
outline: none;
|
15980
|
-
border: solid 1px var(--inspect-input-border);
|
15981
|
-
color: var(--inspect-input-foreground);
|
15982
|
-
background: var(--inspect-input-background);
|
16041
|
+
grid-template-columns: 1fr max-content;
|
16042
|
+
justify-content: space-between;
|
16043
|
+
padding: 0.2em 0.5em;
|
16044
|
+
--bs-breadcrumb-divider: ">";
|
16045
|
+
overflow: hidden;
|
15983
16046
|
}
|
15984
16047
|
|
15985
|
-
|
15986
|
-
|
15987
|
-
|
15988
|
-
margin-
|
15989
|
-
|
15990
|
-
|
16048
|
+
._breadcrumbs_1fu9w_12 {
|
16049
|
+
border-left: solid var(--bs-border-color) 1px;
|
16050
|
+
padding-left: 0.5em;
|
16051
|
+
margin-bottom: 0;
|
16052
|
+
min-width: 0;
|
16053
|
+
overflow: hidden;
|
16054
|
+
width: max-content;
|
16055
|
+
display: flex;
|
16056
|
+
flex-wrap: nowrap;
|
15991
16057
|
}
|
15992
16058
|
|
15993
|
-
.
|
15994
|
-
|
15995
|
-
|
15996
|
-
font-size: var(--inspect-fond-size-larger);
|
16059
|
+
._ellipsis_1fu9w_23 {
|
16060
|
+
color: var(--bs-secondary);
|
16061
|
+
font-weight: normal;
|
15997
16062
|
}
|
15998
16063
|
|
15999
|
-
.
|
16000
|
-
|
16001
|
-
|
16002
|
-
margin-top: -0.1rem;
|
16003
|
-
margin-bottom: -0.1rem;
|
16004
|
-
}
|
16005
|
-
._wrapper_1tajk_1 {
|
16006
|
-
display: flex;
|
16064
|
+
._left_1fu9w_28 {
|
16065
|
+
display: grid;
|
16066
|
+
grid-template-columns: max-content max-content 1fr;
|
16007
16067
|
align-items: center;
|
16008
|
-
|
16009
|
-
width: 100%;
|
16010
|
-
height: 0;
|
16011
|
-
overflow-y: visible;
|
16012
|
-
overflow-x: visible;
|
16013
|
-
text-align: center;
|
16014
|
-
}
|
16015
|
-
|
16016
|
-
._container_1tajk_12 {
|
16017
|
-
width: 100%;
|
16018
|
-
height: 1px;
|
16019
|
-
background-color: transparent;
|
16020
|
-
position: sticky;
|
16068
|
+
column-gap: 0.75em;
|
16021
16069
|
overflow: hidden;
|
16022
|
-
|
16070
|
+
min-width: 0;
|
16071
|
+
max-width: 100%;
|
16023
16072
|
}
|
16024
16073
|
|
16025
|
-
.
|
16026
|
-
|
16027
|
-
|
16028
|
-
|
16029
|
-
|
16030
|
-
|
16031
|
-
|
16032
|
-
top: 0;
|
16074
|
+
._right_1fu9w_38 {
|
16075
|
+
display: grid;
|
16076
|
+
grid-auto-columns: max-content;
|
16077
|
+
grid-auto-flow: column;
|
16078
|
+
justify-content: end;
|
16079
|
+
align-items: center;
|
16080
|
+
column-gap: 0.5em;
|
16033
16081
|
}
|
16034
16082
|
|
16035
|
-
|
16036
|
-
|
16037
|
-
transform: translateX(-100%);
|
16038
|
-
}
|
16039
|
-
100% {
|
16040
|
-
transform: translateX(2000%);
|
16041
|
-
}
|
16042
|
-
}
|
16043
|
-
._dirname_1qban_1 {
|
16044
|
-
overflow: hidden;
|
16045
|
-
white-space: nowrap;
|
16046
|
-
text-overflow: ellipsis;
|
16083
|
+
._toolbarButton_1fu9w_47 {
|
16084
|
+
color: var(--bs-body);
|
16047
16085
|
}
|
16048
16086
|
|
16049
|
-
.
|
16050
|
-
color:
|
16051
|
-
text-decoration: none;
|
16052
|
-
cursor: pointer;
|
16087
|
+
._toolbarButton_1fu9w_47:hover {
|
16088
|
+
color: var(--bs-link-hover-color);
|
16053
16089
|
}
|
16054
16090
|
|
16055
|
-
.
|
16056
|
-
|
16057
|
-
text-decoration: none;
|
16091
|
+
._pathContainer_1fu9w_55 {
|
16092
|
+
overflow-x: hidden;
|
16058
16093
|
}
|
16059
|
-
.
|
16060
|
-
position: fixed;
|
16061
|
-
left: 0;
|
16062
|
-
top: 0;
|
16063
|
-
width: var(--sidebar-width);
|
16094
|
+
._gridContainer_12ksy_1 {
|
16064
16095
|
height: 100%;
|
16065
|
-
|
16066
|
-
|
16067
|
-
display: flex;
|
16068
|
-
flex-direction: column;
|
16069
|
-
z-index: 9999; /* Sit above main content */
|
16070
|
-
transition: transform 0.3s ease-in-out;
|
16071
|
-
}
|
16072
|
-
|
16073
|
-
._sidebarClosed_1essr_15 {
|
16074
|
-
transform: translateX(-100%);
|
16096
|
+
overflow: auto;
|
16097
|
+
padding: 0;
|
16075
16098
|
}
|
16076
16099
|
|
16077
|
-
.
|
16078
|
-
|
16100
|
+
._grid_12ksy_1 {
|
16101
|
+
display: grid;
|
16102
|
+
grid-template-rows: auto 1fr;
|
16103
|
+
height: 100%;
|
16104
|
+
min-height: 0;
|
16079
16105
|
}
|
16080
16106
|
|
16081
|
-
|
16107
|
+
/* Header Styles */
|
16108
|
+
._headerRow_12ksy_15 {
|
16082
16109
|
display: grid;
|
16083
|
-
|
16084
|
-
|
16085
|
-
align-items: center;
|
16086
|
-
opacity: 0.7;
|
16110
|
+
background: var(--bs-light);
|
16111
|
+
border-bottom: 1px solid var(--bs-border-color);
|
16087
16112
|
position: sticky;
|
16088
16113
|
top: 0;
|
16089
|
-
|
16090
|
-
|
16091
|
-
|
16092
|
-
height: 3.6em;
|
16093
|
-
background-color: #fff;
|
16094
|
-
z-index: 10;
|
16114
|
+
z-index: 1;
|
16115
|
+
width: fit-content;
|
16116
|
+
min-width: 100%;
|
16095
16117
|
}
|
16096
16118
|
|
16097
|
-
.
|
16098
|
-
padding: 0.
|
16099
|
-
|
16100
|
-
|
16101
|
-
|
16119
|
+
._headerCell_12ksy_26 {
|
16120
|
+
padding: 0.1em 0.1em 0.1em 0.6em;
|
16121
|
+
font-weight: 600;
|
16122
|
+
font-size: 0.875rem;
|
16123
|
+
display: flex;
|
16124
|
+
align-items: center;
|
16125
|
+
justify-content: flex-start;
|
16126
|
+
border-right: 1px solid var(--bs-border-color-translucent);
|
16127
|
+
position: relative;
|
16128
|
+
box-sizing: border-box;
|
16102
16129
|
}
|
16103
16130
|
|
16104
|
-
.
|
16105
|
-
|
16131
|
+
._headerCell_12ksy_26:last-child {
|
16132
|
+
border-right: none;
|
16106
16133
|
}
|
16107
16134
|
|
16108
|
-
.
|
16109
|
-
|
16110
|
-
|
16135
|
+
._sortable_12ksy_42 {
|
16136
|
+
cursor: pointer;
|
16137
|
+
user-select: none;
|
16111
16138
|
}
|
16112
16139
|
|
16113
|
-
.
|
16114
|
-
|
16115
|
-
|
16116
|
-
|
16117
|
-
|
16118
|
-
|
16140
|
+
._sortable_12ksy_42:hover {
|
16141
|
+
background-color: var(--bs-secondary-bg-subtle);
|
16142
|
+
}
|
16143
|
+
|
16144
|
+
._sortIndicator_12ksy_51 {
|
16145
|
+
margin-left: 0.25em;
|
16146
|
+
font-size: 0.75rem;
|
16147
|
+
color: var(--bs-link-color);
|
16119
16148
|
}
|
16120
16149
|
|
16121
|
-
|
16150
|
+
/* Resizer Styles */
|
16151
|
+
._resizer_12ksy_58 {
|
16152
|
+
position: absolute;
|
16153
|
+
right: 0;
|
16154
|
+
top: 0;
|
16155
|
+
height: 100%;
|
16156
|
+
width: 5px;
|
16122
16157
|
background-color: var(--bs-secondary-bg-subtle);
|
16158
|
+
|
16159
|
+
cursor: col-resize;
|
16160
|
+
user-select: none;
|
16161
|
+
touch-action: none;
|
16162
|
+
opacity: 0;
|
16163
|
+
transition: opacity 0.2s;
|
16123
16164
|
}
|
16124
16165
|
|
16125
|
-
.
|
16126
|
-
|
16127
|
-
|
16166
|
+
._resizer_12ksy_58:hover,
|
16167
|
+
._isResizing_12ksy_74 {
|
16168
|
+
opacity: 1;
|
16128
16169
|
}
|
16129
16170
|
|
16130
|
-
.
|
16131
|
-
|
16132
|
-
padding: 0.5rem 1rem;
|
16133
|
-
color: inherit;
|
16134
|
-
text-decoration: none;
|
16171
|
+
._headerCell_12ksy_26:hover ._resizer_12ksy_58 {
|
16172
|
+
opacity: 0.3;
|
16135
16173
|
}
|
16136
|
-
|
16137
|
-
|
16138
|
-
|
16174
|
+
|
16175
|
+
/* Body Styles */
|
16176
|
+
._bodyContainer_12ksy_83 {
|
16177
|
+
overflow-y: auto;
|
16178
|
+
overflow-x: hidden;
|
16179
|
+
min-height: 0;
|
16180
|
+
min-width: 100%;
|
16181
|
+
width: fit-content;
|
16139
16182
|
}
|
16140
16183
|
|
16141
|
-
.
|
16184
|
+
._bodyRow_12ksy_91 {
|
16142
16185
|
display: grid;
|
16143
|
-
|
16144
|
-
|
16145
|
-
|
16186
|
+
transition: background-color 0.15s ease-in-out;
|
16187
|
+
width: fit-content;
|
16188
|
+
min-width: 100%;
|
16146
16189
|
}
|
16147
16190
|
|
16148
|
-
|
16149
|
-
|
16150
|
-
|
16151
|
-
._container_1frsg_1 {
|
16191
|
+
/* Cell Styles */
|
16192
|
+
._bodyCell_12ksy_99 {
|
16193
|
+
padding: 0.1em 0.1em 0.1em 0.6em;
|
16152
16194
|
display: flex;
|
16153
|
-
|
16154
|
-
|
16155
|
-
|
16195
|
+
align-items: center;
|
16196
|
+
box-sizing: border-box;
|
16197
|
+
overflow: hidden;
|
16198
|
+
}
|
16199
|
+
|
16200
|
+
._bodyCell_12ksy_99:last-child {
|
16201
|
+
border-right: none;
|
16156
16202
|
}
|
16157
16203
|
|
16158
|
-
.
|
16204
|
+
._emptyMessage_12ksy_111 {
|
16205
|
+
width: 100%;
|
16206
|
+
text-align: center;
|
16207
|
+
padding-top: 4em;
|
16208
|
+
}
|
16209
|
+
._dateCell_1f2i9_1 {
|
16159
16210
|
display: flex;
|
16160
|
-
|
16161
|
-
|
16162
|
-
|
16163
|
-
|
16164
|
-
|
16211
|
+
align-items: center;
|
16212
|
+
min-width: 0;
|
16213
|
+
flex: 1;
|
16214
|
+
}
|
16215
|
+
._emptyCell_17jto_1 {
|
16216
|
+
display: block;
|
16217
|
+
}
|
16218
|
+
._nameCell_arm8o_1 {
|
16219
|
+
display: flex;
|
16220
|
+
align-items: center;
|
16221
|
+
min-width: 0;
|
16222
|
+
flex: 1;
|
16165
16223
|
}
|
16166
16224
|
|
16167
|
-
.
|
16168
|
-
|
16225
|
+
._fileLink_arm8o_8 {
|
16226
|
+
color: var(--bs-body-color);
|
16227
|
+
text-decoration: none;
|
16228
|
+
overflow: hidden;
|
16229
|
+
text-overflow: ellipsis;
|
16230
|
+
white-space: nowrap;
|
16231
|
+
max-width: 100%;
|
16169
16232
|
}
|
16170
16233
|
|
16171
|
-
.
|
16172
|
-
|
16234
|
+
._fileLink_arm8o_8:hover {
|
16235
|
+
color: var(--bs-link-hover-color);
|
16236
|
+
text-decoration: underline;
|
16173
16237
|
}
|
16174
|
-
.
|
16238
|
+
._iconCell_1jobp_1 {
|
16175
16239
|
display: flex;
|
16176
|
-
|
16177
|
-
|
16178
|
-
|
16179
|
-
|
16240
|
+
align-items: center;
|
16241
|
+
justify-content: center;
|
16242
|
+
font-size: 1rem;
|
16243
|
+
color: var(--bs-gray-600);
|
16180
16244
|
}
|
16181
16245
|
|
16182
|
-
.
|
16246
|
+
.ii:before {
|
16247
|
+
background-color: var(--bs-gray-600);
|
16248
|
+
}
|
16249
|
+
._modelCell_1lo5p_1 {
|
16183
16250
|
display: flex;
|
16184
|
-
flex-direction: column;
|
16185
16251
|
align-items: center;
|
16186
|
-
|
16252
|
+
min-width: 0;
|
16253
|
+
flex: 1;
|
16254
|
+
}
|
16255
|
+
._scoreCell_1xqe0_1 {
|
16256
|
+
display: flex;
|
16257
|
+
align-items: center;
|
16258
|
+
font-size: 0.875rem;
|
16259
|
+
color: var(--bs-gray-600);
|
16260
|
+
}
|
16261
|
+
._error_14ftq_1 {
|
16262
|
+
color: var(--bs-danger);
|
16187
16263
|
}
|
16188
16264
|
|
16189
|
-
.
|
16190
|
-
|
16191
|
-
font-weight: 300;
|
16192
|
-
border-bottom: solid var(--bs-border-color) 1px;
|
16265
|
+
._started_14ftq_5 {
|
16266
|
+
color: var(--bs-secondary);
|
16193
16267
|
}
|
16194
16268
|
|
16195
|
-
.
|
16196
|
-
|
16197
|
-
|
16269
|
+
._success_14ftq_9 {
|
16270
|
+
color: var(--bs-success);
|
16271
|
+
}
|
16272
|
+
|
16273
|
+
._cancelled_14ftq_13 {
|
16274
|
+
color: var(--bs-secondary);
|
16275
|
+
}
|
16276
|
+
._nameCell_cjd7p_1 {
|
16277
|
+
display: flex;
|
16278
|
+
align-items: center;
|
16279
|
+
min-width: 0;
|
16280
|
+
flex: 1;
|
16281
|
+
}
|
16282
|
+
|
16283
|
+
._logLink_cjd7p_8 {
|
16284
|
+
color: var(--bs-link-color);
|
16285
|
+
text-decoration: none;
|
16286
|
+
overflow: hidden;
|
16287
|
+
text-overflow: ellipsis;
|
16288
|
+
white-space: nowrap;
|
16289
|
+
max-width: 100%;
|
16290
|
+
}
|
16291
|
+
|
16292
|
+
._logLink_cjd7p_8:hover {
|
16293
|
+
color: var(--bs-link-hover-color);
|
16294
|
+
text-decoration: underline;
|
16295
|
+
}
|
16296
|
+
._footer_14uod_1 {
|
16297
|
+
border-top: solid var(--bs-light-border-subtle) 1px;
|
16298
|
+
background: var(--bs-light-bg-subtle);
|
16299
|
+
display: grid;
|
16300
|
+
grid-template-columns: 0.5fr 1fr 0.5fr;
|
16301
|
+
justify-content: space-between;
|
16302
|
+
|
16303
|
+
padding: 0.2em 1em;
|
16198
16304
|
}
|
16199
16305
|
|
16200
|
-
.
|
16306
|
+
._spinnerContainer_14uod_11 {
|
16201
16307
|
display: grid;
|
16202
16308
|
grid-template-columns: max-content max-content;
|
16203
|
-
|
16309
|
+
column-gap: 0.3em;
|
16310
|
+
padding-top: 0.2em;
|
16204
16311
|
}
|
16205
16312
|
|
16206
|
-
.
|
16207
|
-
|
16313
|
+
._spinner_14uod_11 {
|
16314
|
+
height: 11px;
|
16315
|
+
width: 11px;
|
16316
|
+
color: var(--bs-secondary);
|
16317
|
+
border-width: 1px;
|
16208
16318
|
}
|
16209
|
-
|
16210
|
-
|
16211
|
-
|
16212
|
-
|
16319
|
+
|
16320
|
+
._label_14uod_25 {
|
16321
|
+
margin-left: 0.1em;
|
16322
|
+
margin-top: -3px;
|
16213
16323
|
}
|
16214
16324
|
|
16215
|
-
.
|
16216
|
-
|
16217
|
-
|
16325
|
+
._right_14uod_30 {
|
16326
|
+
display: grid;
|
16327
|
+
grid-auto-columns: max-content;
|
16328
|
+
grid-auto-flow: column;
|
16329
|
+
justify-content: end;
|
16330
|
+
align-items: center;
|
16331
|
+
column-gap: 0.5em;
|
16218
16332
|
}
|
16219
16333
|
|
16220
|
-
.
|
16221
|
-
|
16222
|
-
|
16223
|
-
|
16334
|
+
._left_14uod_39 {
|
16335
|
+
display: grid;
|
16336
|
+
grid-auto-columns: max-content;
|
16337
|
+
grid-auto-flow: column;
|
16338
|
+
justify-content: start;
|
16339
|
+
align-items: center;
|
16340
|
+
column-gap: 0.5em;
|
16224
16341
|
}
|
16225
16342
|
|
16226
|
-
.
|
16227
|
-
|
16343
|
+
._center_14uod_48 {
|
16344
|
+
display: grid;
|
16345
|
+
grid-auto-columns: max-content;
|
16346
|
+
grid-auto-flow: column;
|
16347
|
+
justify-content: center;
|
16348
|
+
align-items: center;
|
16349
|
+
column-gap: 0.5em;
|
16350
|
+
}
|
16351
|
+
._pager_jzegk_1 {
|
16352
|
+
--bs-pagination-padding-x: 0.5em;
|
16353
|
+
--bs-pagination-padding-y: 0.15em;
|
16354
|
+
--bs-pagination-font-size: 0.8rem;
|
16355
|
+
--bs-pagination-padding-x: 0.5em;
|
16356
|
+
--bs-pagination-padding-y: 0;
|
16357
|
+
--bs-pagination-border-radius: var(--bs-border-radius);
|
16358
|
+
margin-bottom: 0;
|
16228
16359
|
}
|
16229
16360
|
|
16230
|
-
.
|
16231
|
-
|
16361
|
+
._item_jzegk_11:not(.disabled) {
|
16362
|
+
cursor: pointer;
|
16363
|
+
}
|
16364
|
+
|
16365
|
+
._item_jzegk_11 {
|
16366
|
+
margin-left: 0.2em;
|
16367
|
+
margin-right: 0.2em;
|
16368
|
+
}
|
16369
|
+
|
16370
|
+
._item_jzegk_11:first-child,
|
16371
|
+
._item_jzegk_11:last-child {
|
16372
|
+
--bs-pagination-padding-x: 0.3em;
|
16373
|
+
}
|
16374
|
+
|
16375
|
+
._item_jzegk_11:first-child .ii:before,
|
16376
|
+
._item_jzegk_11:last-child .ii:before {
|
16377
|
+
margin-top: -2px;
|
16378
|
+
font-size: 0.8em;
|
16379
|
+
}
|
16380
|
+
._container_e1pcq_1 {
|
16232
16381
|
display: grid;
|
16233
|
-
grid-template-columns:
|
16234
|
-
column-gap:
|
16235
|
-
|
16236
|
-
|
16382
|
+
grid-template-columns: max-content max-content;
|
16383
|
+
column-gap: 0.3em;
|
16384
|
+
border: solid var(--bs-border-color) 1px;
|
16385
|
+
border-radius: var(--bs-border-radius);
|
16386
|
+
background-color: var(--inspect-input-background);
|
16387
|
+
align-items: center;
|
16388
|
+
}
|
16389
|
+
|
16390
|
+
._container_e1pcq_1:focus-within {
|
16391
|
+
outline: 2px solid var(--bs-primary);
|
16392
|
+
outline-offset: 2px;
|
16393
|
+
}
|
16394
|
+
|
16395
|
+
._input_e1pcq_16 {
|
16396
|
+
border: none;
|
16397
|
+
outline: none;
|
16398
|
+
background: transparent;
|
16399
|
+
color: var(--bs-body-color);
|
16400
|
+
}
|
16401
|
+
|
16402
|
+
._withIcon_e1pcq_23 {
|
16403
|
+
grid-template-columns: max-content max-content max-content;
|
16404
|
+
}
|
16405
|
+
|
16406
|
+
._icon_e1pcq_27 {
|
16407
|
+
margin-left: 0.3em;
|
16408
|
+
}
|
16409
|
+
|
16410
|
+
._clearText_e1pcq_31 {
|
16411
|
+
opacity: 0.6;
|
16412
|
+
margin-right: 0.3em;
|
16413
|
+
}
|
16414
|
+
|
16415
|
+
._clearText_e1pcq_31:hover {
|
16416
|
+
cursor: pointer;
|
16417
|
+
}
|
16418
|
+
|
16419
|
+
._clearText_e1pcq_31._hidden_e1pcq_40:hover {
|
16420
|
+
cursor: default !important;
|
16421
|
+
}
|
16422
|
+
._hidden_e1pcq_40 {
|
16423
|
+
opacity: 0 !important;
|
16424
|
+
}
|
16425
|
+
._filterInput_gv8bt_1 {
|
16426
|
+
font-size: 0.8em;
|
16427
|
+
margin: 0em;
|
16428
|
+
color: var(--bs-secondary);
|
16429
|
+
}
|
16430
|
+
._panel_18nhs_1 {
|
16431
|
+
height: 100vh;
|
16432
|
+
width: 100vw;
|
16433
|
+
display: grid;
|
16434
|
+
grid-template-rows: max-content max-content 1fr max-content;
|
16435
|
+
}
|
16436
|
+
|
16437
|
+
._list_18nhs_8 {
|
16438
|
+
overflow: hidden;
|
16439
|
+
height: 100%;
|
16440
|
+
min-height: 0;
|
16441
|
+
}
|
16442
|
+
.findBand {
|
16443
|
+
position: absolute;
|
16444
|
+
top: 0;
|
16445
|
+
right: 0;
|
16446
|
+
margin-right: 20%;
|
16447
|
+
z-index: 1060;
|
16448
|
+
color: var(--inspect-find-foreground);
|
16449
|
+
background-color: var(--inspect-find-background);
|
16450
|
+
font-size: 0.9rem;
|
16451
|
+
display: grid;
|
16452
|
+
grid-template-columns: auto auto auto auto auto;
|
16453
|
+
column-gap: 0.2em;
|
16454
|
+
padding: 0.2rem;
|
16455
|
+
border-bottom: solid 1px var(--bs-light-border-subtle);
|
16456
|
+
border-left: solid 1px var(--bs-light-border-subtle);
|
16457
|
+
border-right: solid 1px var(--bs-light-border-subtle);
|
16458
|
+
box-shadow: var(--bs-box-shadow);
|
16459
|
+
}
|
16460
|
+
|
16461
|
+
.findBand input {
|
16462
|
+
height: 2em;
|
16463
|
+
font-size: 0.9em;
|
16464
|
+
margin: 0.1rem;
|
16465
|
+
outline: none;
|
16466
|
+
border: solid 1px var(--inspect-input-border);
|
16467
|
+
color: var(--inspect-input-foreground);
|
16468
|
+
background: var(--inspect-input-background);
|
16469
|
+
}
|
16470
|
+
|
16471
|
+
#inspect-find-no-results {
|
16472
|
+
font-size: 0.9em;
|
16473
|
+
opacity: 0;
|
16474
|
+
margin-top: auto;
|
16475
|
+
margin-bottom: auto;
|
16476
|
+
margin-right: 0.5em;
|
16477
|
+
}
|
16478
|
+
|
16479
|
+
.findBand .btn.next,
|
16480
|
+
.findBand .btn.prev {
|
16481
|
+
padding: 0;
|
16482
|
+
font-size: var(--inspect-fond-size-larger);
|
16483
|
+
}
|
16484
|
+
|
16485
|
+
.findBand .btn.close {
|
16486
|
+
padding: 0;
|
16487
|
+
font-size: var(--inspect-font-size-title-secondary);
|
16488
|
+
margin-top: -0.1rem;
|
16489
|
+
margin-bottom: -0.1rem;
|
16237
16490
|
}
|
16238
16491
|
._tabs_jdywf_1 {
|
16239
16492
|
align-items: center;
|
@@ -16280,1622 +16533,1208 @@ a._citationLink_t2k1z_9:hover {
|
|
16280
16533
|
padding-left: 0.7em;
|
16281
16534
|
padding-right: 0.7em;
|
16282
16535
|
}
|
16283
|
-
.
|
16284
|
-
|
16285
|
-
|
16286
|
-
margin-left: 0.5rem;
|
16287
|
-
min-width: 250px;
|
16288
|
-
}
|
16289
|
-
|
16290
|
-
._navbarToggle_838qu_8 {
|
16291
|
-
padding: 0rem 0.1rem 0.1rem 0rem;
|
16292
|
-
display: flex;
|
16536
|
+
._workspace_1r3mu_1 {
|
16537
|
+
padding-top: 0rem;
|
16538
|
+
overflow-y: hidden;
|
16293
16539
|
}
|
16294
16540
|
|
16295
|
-
.
|
16541
|
+
._tabContainer_1r3mu_6 {
|
16542
|
+
padding: 0;
|
16543
|
+
flex: 1;
|
16296
16544
|
display: flex;
|
16297
16545
|
flex-direction: column;
|
16298
|
-
|
16546
|
+
overflow-y: hidden;
|
16299
16547
|
}
|
16300
16548
|
|
16301
|
-
.
|
16302
|
-
|
16303
|
-
|
16304
|
-
|
16549
|
+
._tabSet_1r3mu_14 {
|
16550
|
+
flex-wrap: nowrap;
|
16551
|
+
padding: 0.5em 1em 0.5em 1em;
|
16552
|
+
border-bottom: solid 1px var(--bs-border-color);
|
16553
|
+
background: var(--bs-light);
|
16305
16554
|
}
|
16306
16555
|
|
16307
|
-
.
|
16556
|
+
._tabs_1r3mu_21 {
|
16557
|
+
padding: 0.3rem 0.3rem 0.3rem 0.3rem;
|
16558
|
+
width: 5rem;
|
16559
|
+
text-transform: uppercase;
|
16560
|
+
border-radius: var(--bs-border-radius);
|
16308
16561
|
font-weight: 600;
|
16309
|
-
margin-right: 0.3rem;
|
16310
16562
|
}
|
16311
16563
|
|
16312
|
-
.
|
16313
|
-
|
16564
|
+
._tabPanels_1r3mu_29 {
|
16565
|
+
flex: 1;
|
16566
|
+
overflow-y: hidden;
|
16567
|
+
display: flex;
|
16314
16568
|
}
|
16315
|
-
|
16316
|
-
|
16317
|
-
|
16318
|
-
|
16319
|
-
|
16569
|
+
.message-band {
|
16570
|
+
grid-template-columns: max-content auto max-content;
|
16571
|
+
align-items: center;
|
16572
|
+
column-gap: 0.5em;
|
16573
|
+
font-size: var(--inspect-font-size-small);
|
16574
|
+
border-bottom: solid 1px var(--bs-light-border-subtle);
|
16575
|
+
padding: 0.3em 1em;
|
16320
16576
|
display: grid;
|
16321
|
-
grid-template-columns: minmax(0, max-content) max-content;
|
16322
16577
|
}
|
16323
16578
|
|
16324
|
-
.
|
16325
|
-
|
16326
|
-
margin-right: 1em;
|
16327
|
-
margin-bottom: 0;
|
16579
|
+
.message-band.hidden {
|
16580
|
+
display: none;
|
16328
16581
|
}
|
16329
16582
|
|
16330
|
-
.
|
16331
|
-
|
16583
|
+
.message-band.info {
|
16584
|
+
background-color: var(--bs-light);
|
16332
16585
|
}
|
16333
|
-
|
16334
|
-
|
16335
|
-
|
16586
|
+
|
16587
|
+
.message-band.warning {
|
16588
|
+
background-color: var(--bs-warning-bg-subtle);
|
16589
|
+
color: var(--bs-warning-text-emphasis);
|
16336
16590
|
}
|
16337
|
-
|
16338
|
-
|
16339
|
-
|
16340
|
-
|
16341
|
-
gap: 0;
|
16342
|
-
margin-top: -0.2rem;
|
16343
|
-
margin-bottom: 0.2rem;
|
16591
|
+
|
16592
|
+
.message-band.error {
|
16593
|
+
background-color: var(--bs-error-bg-subtle);
|
16594
|
+
color: var(--bs-error-text-emphasis);
|
16344
16595
|
}
|
16345
16596
|
|
16346
|
-
.
|
16347
|
-
|
16348
|
-
|
16349
|
-
|
16350
|
-
|
16351
|
-
|
16597
|
+
.message-band-btn {
|
16598
|
+
font-size: var(--inspect-font-size-title-secondary);
|
16599
|
+
margin: 0;
|
16600
|
+
padding: 0;
|
16601
|
+
height: var(--inspect-font-size-title-secondary);
|
16602
|
+
line-height: var(--inspect-font-size-title-secondary);
|
16352
16603
|
}
|
16353
|
-
|
16354
|
-
|
16355
|
-
|
16356
|
-
margin-left: 0.5rem;
|
16357
|
-
min-width: 250px;
|
16604
|
+
|
16605
|
+
.message-band-btn.error {
|
16606
|
+
color: var(--bs-error-text-emphasis);
|
16358
16607
|
}
|
16359
16608
|
|
16360
|
-
.
|
16609
|
+
.message-band-btn.warning {
|
16610
|
+
color: var(--bs-warning-text-emphasis);
|
16611
|
+
}
|
16612
|
+
.card-header-container {
|
16361
16613
|
display: grid;
|
16362
|
-
grid-template-columns:
|
16363
|
-
|
16614
|
+
grid-template-columns: max-content auto;
|
16615
|
+
column-gap: 0em;
|
16616
|
+
padding: 0.5em 0.5em 0.5em 0.5em;
|
16617
|
+
font-size: var(--inspect-font-size-small);
|
16618
|
+
font-weight: 600;
|
16619
|
+
border-bottom: solid 1px var(--bs-light-border-subtle);
|
16364
16620
|
}
|
16365
16621
|
|
16366
|
-
.
|
16367
|
-
padding:
|
16368
|
-
display: flex;
|
16622
|
+
.card-header-icon {
|
16623
|
+
padding-right: 0.2rem;
|
16369
16624
|
}
|
16370
16625
|
|
16371
|
-
.
|
16372
|
-
|
16373
|
-
flex-direction: column;
|
16374
|
-
margin-left: 0.2rem;
|
16375
|
-
}
|
16626
|
+
.card-body {
|
16627
|
+
background-color: var(--bs-body-bg);
|
16376
16628
|
|
16377
|
-
.
|
16378
|
-
margin-top: 0.1rem;
|
16379
|
-
display: grid;
|
16380
|
-
grid-template-columns: minmax(30px, max-content) minmax(100px, max-content);
|
16629
|
+
padding: 0.5em;
|
16381
16630
|
}
|
16382
16631
|
|
16383
|
-
.
|
16384
|
-
|
16385
|
-
|
16632
|
+
.card {
|
16633
|
+
background-color: var(--bs-light-bg-subtle);
|
16634
|
+
border: solid 1px var(--bs-light-border-subtle);
|
16635
|
+
border-radius: var(--bs-border-radius);
|
16386
16636
|
}
|
16387
16637
|
|
16388
|
-
.
|
16389
|
-
|
16638
|
+
.card-collaping-header {
|
16639
|
+
border-bottom: none;
|
16390
16640
|
}
|
16391
16641
|
|
16392
|
-
.
|
16393
|
-
|
16394
|
-
|
16395
|
-
margin-right: 1em;
|
16396
|
-
margin-bottom: 0;
|
16642
|
+
.card-collapsing-header-container {
|
16643
|
+
justify-content: space-between;
|
16644
|
+
align-items: center;
|
16397
16645
|
}
|
16398
16646
|
|
16399
|
-
.
|
16400
|
-
|
16401
|
-
|
16402
|
-
padding-bottom: 0;
|
16403
|
-
display: grid;
|
16404
|
-
grid-template-columns: minmax(0, max-content) max-content;
|
16647
|
+
.card-collapsing-header-icon {
|
16648
|
+
flex: 0 0 content;
|
16649
|
+
padding-right: 0.5rem;
|
16405
16650
|
}
|
16406
|
-
|
16651
|
+
|
16652
|
+
.card-collapsing-header-contents {
|
16653
|
+
color: var(--body-color);
|
16654
|
+
opacity: 0.8;
|
16655
|
+
flex: 1 1 auto;
|
16656
|
+
font-size: var(--inspect-font-size-smaller);
|
16657
|
+
padding-right: 0;
|
16658
|
+
padding-left: 0;
|
16659
|
+
transition: opacity 0.2s ease-out;
|
16407
16660
|
display: flex;
|
16408
|
-
|
16409
|
-
flex-direction: row;
|
16410
|
-
background-color: unset;
|
16411
|
-
color: var(--bs-link-color);
|
16661
|
+
justify-content: space-between;
|
16412
16662
|
}
|
16413
16663
|
|
16414
|
-
.
|
16415
|
-
|
16416
|
-
|
16664
|
+
.card-collapsing-header-toggle {
|
16665
|
+
flex: 0 1 1em;
|
16666
|
+
text-align: right;
|
16667
|
+
padding: 0 0.5em 0.1em 0.5em;
|
16668
|
+
font-size: var(--inspect-font-size-smaller);
|
16417
16669
|
}
|
16418
16670
|
|
16419
|
-
.
|
16420
|
-
|
16671
|
+
.card-body.card-no-padding {
|
16672
|
+
padding: 0;
|
16421
16673
|
}
|
16422
|
-
.
|
16423
|
-
margin-
|
16424
|
-
margin-right: auto;
|
16425
|
-
display: flex;
|
16426
|
-
flex: 1 1 auto;
|
16427
|
-
justify-content: center;
|
16428
|
-
max-width: 90vw;
|
16429
|
-
margin-top: 3rem;
|
16430
|
-
border-radius: var(--bs-border-radius);
|
16431
|
-
position: relative;
|
16432
|
-
z-index: 1050;
|
16674
|
+
._item_1uzhd_1 {
|
16675
|
+
margin-bottom: 0em;
|
16433
16676
|
}
|
16434
|
-
|
16435
|
-
.
|
16436
|
-
height: 2em;
|
16677
|
+
._icon_59zaz_1 {
|
16678
|
+
margin-right: 0.3rem;
|
16437
16679
|
}
|
16438
16680
|
|
16439
|
-
.
|
16440
|
-
|
16681
|
+
._container_59zaz_5 {
|
16682
|
+
margin-left: 1.3rem;
|
16683
|
+
margin-top: 0.2rem;
|
16684
|
+
margin-bottom: 0.3rem;
|
16441
16685
|
}
|
16442
16686
|
|
16443
|
-
.
|
16444
|
-
|
16445
|
-
width: 0.8em;
|
16687
|
+
._metadata_59zaz_11 {
|
16688
|
+
margin-bottom: 0.75em;
|
16446
16689
|
}
|
16447
|
-
|
16448
|
-
|
16449
|
-
._backdrop_1tvha_28 {
|
16450
|
-
position: fixed;
|
16451
|
-
top: 0;
|
16452
|
-
left: 0;
|
16453
|
-
width: 100%;
|
16454
|
-
height: 100%;
|
16455
|
-
background-color: var(--inspect-glass-color);
|
16456
|
-
opacity: var(--inspect-glass-opacity);
|
16457
|
-
|
16458
|
-
z-index: 1040;
|
16690
|
+
._item_leq25_1 {
|
16691
|
+
margin-bottom: 0;
|
16459
16692
|
}
|
16460
|
-
.
|
16693
|
+
._container_12j2k_1 {
|
16461
16694
|
display: flex;
|
16462
16695
|
flex-direction: row;
|
16463
16696
|
flex-wrap: wrap;
|
16464
|
-
justify-content: end;
|
16465
|
-
height: 100%;
|
16466
|
-
align-items: center;
|
16467
|
-
max-height: 15em;
|
16468
|
-
overflow: scroll;
|
16469
16697
|
}
|
16470
16698
|
|
16471
|
-
.
|
16472
|
-
|
16473
|
-
flex-direction: row;
|
16474
|
-
flex-wrap: wrap;
|
16475
|
-
justify-content: end;
|
16476
|
-
align-items: center;
|
16477
|
-
margin-top: 0.2rem;
|
16478
|
-
padding-bottom: 0.4rem;
|
16479
|
-
row-gap: 1em;
|
16480
|
-
max-height: 15em;
|
16481
|
-
overflow: scroll;
|
16482
|
-
align-items: baseline;
|
16699
|
+
._item_12j2k_7 {
|
16700
|
+
margin-bottom: 0;
|
16483
16701
|
}
|
16484
16702
|
|
16485
|
-
.
|
16486
|
-
|
16487
|
-
|
16488
|
-
|
16489
|
-
margin-bottom: -0.
|
16703
|
+
._separator_12j2k_11 {
|
16704
|
+
margin-left: 0.3em;
|
16705
|
+
margin-right: 0.3em;
|
16706
|
+
margin-top: 0;
|
16707
|
+
margin-bottom: -0.1em;
|
16708
|
+
}
|
16709
|
+
._floatingCol_1n79r_1 {
|
16710
|
+
flex: 0 1 1;
|
16711
|
+
width: unset;
|
16712
|
+
text-align: left;
|
16713
|
+
padding-left: 0.6rem;
|
16714
|
+
padding-right: 0.6rem;
|
16490
16715
|
}
|
16491
16716
|
|
16492
|
-
.
|
16493
|
-
|
16494
|
-
|
16495
|
-
padding-
|
16496
|
-
|
16497
|
-
border-bottom: solid var(--bs-border-color) 1px;
|
16717
|
+
._wideCol_1n79r_9 {
|
16718
|
+
flex: 1 1 1;
|
16719
|
+
width: unset;
|
16720
|
+
padding-left: 0.6rem;
|
16721
|
+
padding-right: 0.6rem;
|
16498
16722
|
}
|
16499
16723
|
|
16500
|
-
.
|
16501
|
-
|
16502
|
-
text-align: center;
|
16724
|
+
._oneCol_1n79r_16 {
|
16725
|
+
flex: 0 0 100%;
|
16503
16726
|
}
|
16504
16727
|
|
16505
|
-
.
|
16506
|
-
|
16507
|
-
display: flex;
|
16508
|
-
flex-direction: column;
|
16509
|
-
padding: 0.5em 1em;
|
16728
|
+
._twoCol_1n79r_20 {
|
16729
|
+
flex: 0 0 50%;
|
16510
16730
|
}
|
16511
16731
|
|
16512
|
-
.
|
16513
|
-
|
16732
|
+
._planCol_1n79r_24 {
|
16733
|
+
margin-top: 0;
|
16734
|
+
margin-bottom: 0.5em;
|
16514
16735
|
}
|
16515
16736
|
|
16516
|
-
.
|
16517
|
-
|
16518
|
-
|
16519
|
-
margin-
|
16737
|
+
._container_1n79r_29 {
|
16738
|
+
padding-top: 0;
|
16739
|
+
padding-bottom: 1em;
|
16740
|
+
margin-left: 0;
|
16520
16741
|
}
|
16521
16742
|
|
16522
|
-
.
|
16523
|
-
|
16524
|
-
|
16525
|
-
|
16743
|
+
._grid_1n79r_35 {
|
16744
|
+
display: grid;
|
16745
|
+
justify-content: space-between;
|
16746
|
+
flex-wrap: wrap;
|
16747
|
+
padding-bottom: 1em;
|
16748
|
+
margin-bottom: 0.5em;
|
16526
16749
|
}
|
16527
16750
|
|
16528
|
-
.
|
16751
|
+
._row_1n79r_43 {
|
16529
16752
|
display: grid;
|
16530
|
-
grid-template-columns:
|
16531
|
-
grid-
|
16532
|
-
|
16533
|
-
|
16534
|
-
padding-top: 0.3em;
|
16753
|
+
grid-template-columns: 1fr 1fr;
|
16754
|
+
grid-template-rows: auto;
|
16755
|
+
margin-left: 0.5em;
|
16756
|
+
gap: 1em;
|
16535
16757
|
}
|
16536
|
-
|
16537
|
-
.
|
16538
|
-
|
16539
|
-
|
16758
|
+
._task-error-display_1624b_1 {
|
16759
|
+
font-size: clamp(0.2rem, calc(0.2em + 0.93vw), 0.9rem);
|
16760
|
+
}
|
16761
|
+
.download-button {
|
16762
|
+
margin-top: 3em;
|
16763
|
+
font-size: var(--inspect-font-size-small);
|
16764
|
+
}
|
16765
|
+
.download-panel {
|
16766
|
+
display: grid;
|
16767
|
+
grid-template-rows: content content;
|
16768
|
+
padding-top: 3em;
|
16769
|
+
justify-items: center;
|
16540
16770
|
}
|
16541
16771
|
|
16542
|
-
.
|
16772
|
+
.download-panel-message {
|
16773
|
+
font-size: var(--inspect-font-size-small);
|
16774
|
+
}
|
16775
|
+
.tool-button i {
|
16776
|
+
margin-right: 0.5em;
|
16777
|
+
}
|
16778
|
+
._jsonTab_6pq03_1 {
|
16779
|
+
padding: 0.5rem;
|
16780
|
+
font-size: var(--inspect-font-size-small);
|
16781
|
+
width: 100%;
|
16782
|
+
}
|
16783
|
+
._container_4wzpj_1 {
|
16543
16784
|
display: grid;
|
16544
|
-
grid-template-
|
16785
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
16786
|
+
row-gap: 2em;
|
16545
16787
|
column-gap: 1em;
|
16546
|
-
padding: 0 0.2em;
|
16547
|
-
justify-content: center;
|
16548
16788
|
}
|
16549
16789
|
|
16550
|
-
.
|
16551
|
-
|
16552
|
-
|
16553
|
-
|
16790
|
+
._modelInfo_4wzpj_8 {
|
16791
|
+
display: grid;
|
16792
|
+
grid-template-columns: max-content auto;
|
16793
|
+
column-gap: 1em;
|
16794
|
+
row-gap: 0.1em;
|
16554
16795
|
}
|
16555
16796
|
|
16556
|
-
.
|
16557
|
-
|
16558
|
-
flex-direction: column;
|
16559
|
-
align-items: flex-end;
|
16797
|
+
._role_4wzpj_15 {
|
16798
|
+
grid-column: -1/1;
|
16560
16799
|
}
|
16561
16800
|
|
16562
|
-
.
|
16563
|
-
|
16801
|
+
._sep_4wzpj_19 {
|
16802
|
+
grid-column: -1/1;
|
16803
|
+
height: 1px;
|
16804
|
+
background-color: var(--bs-light-border-subtle);
|
16564
16805
|
}
|
16565
|
-
.
|
16566
|
-
|
16806
|
+
._wrapper_sq96g_1 {
|
16807
|
+
display: grid;
|
16808
|
+
grid-template-columns: 0 auto auto;
|
16809
|
+
column-gap: 1.5em;
|
16810
|
+
row-gap: 0.2em;
|
16567
16811
|
}
|
16568
16812
|
|
16569
|
-
.
|
16570
|
-
|
16571
|
-
padding-top: 0.2em !important;
|
16572
|
-
padding-bottom: 0.2em !important;
|
16813
|
+
._col2_sq96g_8 {
|
16814
|
+
grid-column: 2;
|
16573
16815
|
}
|
16574
16816
|
|
16575
|
-
.
|
16576
|
-
|
16577
|
-
text-align: center;
|
16578
|
-
padding-left: 1em;
|
16579
|
-
padding-right: 1em;
|
16817
|
+
._col1_3_sq96g_12 {
|
16818
|
+
grid-column: 1/3;
|
16580
16819
|
}
|
16581
16820
|
|
16582
|
-
.
|
16583
|
-
|
16584
|
-
padding-left: 1em;
|
16585
|
-
padding-right: 1em;
|
16821
|
+
._col3_sq96g_16 {
|
16822
|
+
grid-column: 3;
|
16586
16823
|
}
|
16587
16824
|
|
16588
|
-
.
|
16589
|
-
|
16825
|
+
._separator_sq96g_20 {
|
16826
|
+
grid-column: -1/1;
|
16827
|
+
height: 1px;
|
16828
|
+
background-color: var(--bs-light-border-subtle);
|
16590
16829
|
}
|
16591
16830
|
|
16592
|
-
.
|
16593
|
-
|
16594
|
-
border-bottom: hidden;
|
16831
|
+
._padded_sq96g_26 {
|
16832
|
+
margin-bottom: 1em;
|
16595
16833
|
}
|
16596
|
-
|
16597
|
-
|
16598
|
-
border-top-color: var(--bs-light-border-subtle);
|
16834
|
+
._table_z217i_1 {
|
16835
|
+
width: 100%;
|
16599
16836
|
}
|
16600
16837
|
|
16601
|
-
|
16602
|
-
|
16603
|
-
thead td,
|
16604
|
-
thead th {
|
16605
|
-
border: none !important;
|
16606
|
-
padding: 0 !important;
|
16838
|
+
._tableTokens_z217i_5 {
|
16839
|
+
padding-bottom: 0.7rem;
|
16607
16840
|
}
|
16608
16841
|
|
16609
|
-
.
|
16610
|
-
|
16611
|
-
|
16612
|
-
._tableSeparator_12koy_45 th {
|
16613
|
-
border: none !important;
|
16614
|
-
}
|
16615
|
-
._statusContainer_1sckj_1 {
|
16616
|
-
display: inline-block;
|
16617
|
-
margin-top: 0.3em;
|
16842
|
+
._tableH_z217i_9 {
|
16843
|
+
padding: 0;
|
16844
|
+
font-weight: 300;
|
16618
16845
|
}
|
16619
16846
|
|
16620
|
-
.
|
16621
|
-
|
16622
|
-
grid-template-columns: auto auto;
|
16847
|
+
._model_z217i_14 {
|
16848
|
+
padding-right: 1em;
|
16623
16849
|
}
|
16624
16850
|
|
16625
|
-
.
|
16626
|
-
|
16851
|
+
._cellContents_z217i_18 {
|
16852
|
+
padding-bottom: 1em;
|
16627
16853
|
}
|
16628
|
-
|
16629
|
-
|
16630
|
-
|
16631
|
-
margin-left:
|
16632
|
-
display:
|
16633
|
-
|
16634
|
-
|
16635
|
-
column-gap: 0.5em;
|
16854
|
+
._wrapper_14r3b_1 {
|
16855
|
+
padding-top: 0;
|
16856
|
+
padding-bottom: 1em;
|
16857
|
+
margin-left: 0.5em;
|
16858
|
+
display: flex;
|
16859
|
+
flex-wrap: wrap;
|
16860
|
+
gap: 1em;
|
16636
16861
|
}
|
16637
16862
|
|
16638
|
-
.
|
16639
|
-
|
16640
|
-
|
16641
|
-
|
16863
|
+
._col1_14r3b_10 {
|
16864
|
+
flex: 0 1 auto;
|
16865
|
+
min-width: 200px;
|
16866
|
+
width: fit-content;
|
16642
16867
|
}
|
16643
16868
|
|
16644
|
-
.
|
16645
|
-
|
16869
|
+
._col2_14r3b_16 {
|
16870
|
+
flex: 1 1 auto;
|
16871
|
+
min-width: 300px;
|
16872
|
+
width: fit-content;
|
16646
16873
|
}
|
16647
|
-
.
|
16648
|
-
|
16649
|
-
|
16650
|
-
|
16651
|
-
font-size: var(--inspect-font-size-smaller);
|
16652
|
-
display: grid;
|
16653
|
-
grid-template-columns: auto auto;
|
16654
|
-
justify-content: end;
|
16874
|
+
._panel_twp3v_1 {
|
16875
|
+
width: 100%;
|
16876
|
+
display: flex;
|
16877
|
+
justify-content: center;
|
16655
16878
|
}
|
16656
16879
|
|
16657
|
-
.
|
16658
|
-
|
16659
|
-
|
16660
|
-
|
16880
|
+
._container_twp3v_7 {
|
16881
|
+
margin-top: 3em;
|
16882
|
+
display: grid;
|
16883
|
+
grid-template-columns: max-content max-content;
|
16884
|
+
column-gap: 0.3em;
|
16661
16885
|
}
|
16662
|
-
.
|
16663
|
-
|
16886
|
+
/* PulsingDots.module.css */
|
16887
|
+
._container_4p85e_2 {
|
16888
|
+
display: inline-flex;
|
16889
|
+
flex-direction: column;
|
16890
|
+
align-items: center;
|
16664
16891
|
}
|
16665
16892
|
|
16666
|
-
.
|
16667
|
-
|
16893
|
+
._dotsContainer_4p85e_8 {
|
16894
|
+
padding-top: 8px;
|
16895
|
+
display: flex;
|
16896
|
+
align-items: center;
|
16897
|
+
justify-content: center;
|
16668
16898
|
}
|
16669
16899
|
|
16670
|
-
.
|
16671
|
-
|
16900
|
+
._small_4p85e_15 ._dotsContainer_4p85e_8 {
|
16901
|
+
column-gap: 2px;
|
16672
16902
|
}
|
16673
16903
|
|
16674
|
-
.
|
16675
|
-
|
16904
|
+
._medium_4p85e_19 ._dotsContainer_4p85e_8 {
|
16905
|
+
column-gap: 5px;
|
16906
|
+
padding-bottom: 2px;
|
16676
16907
|
}
|
16677
16908
|
|
16678
|
-
.
|
16679
|
-
|
16680
|
-
padding:
|
16681
|
-
|
16682
|
-
grid-column-gap: 1em;
|
16683
|
-
border-top: 1px solid var(--bs-border-color);
|
16909
|
+
._large_4p85e_24 ._dotsContainer_4p85e_8 {
|
16910
|
+
column-gap: 6px;
|
16911
|
+
padding-bottom: 3px;
|
16912
|
+
padding-left: 2px;
|
16684
16913
|
}
|
16685
16914
|
|
16686
|
-
.
|
16687
|
-
|
16688
|
-
|
16689
|
-
|
16690
|
-
._workspace_1r3mu_1 {
|
16691
|
-
padding-top: 0rem;
|
16692
|
-
overflow-y: hidden;
|
16915
|
+
._dot_4p85e_8 {
|
16916
|
+
border-radius: 50%;
|
16917
|
+
display: inline-block;
|
16918
|
+
animation: _pulse_4p85e_1 1.5s ease-in-out infinite;
|
16693
16919
|
}
|
16694
16920
|
|
16695
|
-
.
|
16696
|
-
|
16697
|
-
flex: 1;
|
16698
|
-
display: flex;
|
16699
|
-
flex-direction: column;
|
16700
|
-
overflow-y: hidden;
|
16921
|
+
._subtle_4p85e_36 {
|
16922
|
+
background-color: var(--bs-secondary-bg-subtle);
|
16701
16923
|
}
|
16702
16924
|
|
16703
|
-
.
|
16704
|
-
|
16705
|
-
padding: 0.5em 1em 0.5em 1em;
|
16706
|
-
border-bottom: solid 1px var(--bs-border-color);
|
16707
|
-
background: var(--bs-light);
|
16925
|
+
._primary_4p85e_40 {
|
16926
|
+
background-color: var(--bs-secondary);
|
16708
16927
|
}
|
16709
16928
|
|
16710
|
-
.
|
16711
|
-
|
16712
|
-
|
16713
|
-
text-transform: uppercase;
|
16714
|
-
border-radius: var(--bs-border-radius);
|
16715
|
-
font-weight: 600;
|
16929
|
+
._small_4p85e_15 ._dot_4p85e_8 {
|
16930
|
+
width: 3px;
|
16931
|
+
height: 3px;
|
16716
16932
|
}
|
16717
16933
|
|
16718
|
-
.
|
16719
|
-
|
16720
|
-
|
16721
|
-
display: flex;
|
16722
|
-
}
|
16723
|
-
.message-band {
|
16724
|
-
grid-template-columns: max-content auto max-content;
|
16725
|
-
align-items: center;
|
16726
|
-
column-gap: 0.5em;
|
16727
|
-
font-size: var(--inspect-font-size-small);
|
16728
|
-
border-bottom: solid 1px var(--bs-light-border-subtle);
|
16729
|
-
padding: 0.3em 1em;
|
16730
|
-
display: grid;
|
16934
|
+
._medium_4p85e_19 ._dot_4p85e_8 {
|
16935
|
+
width: 8px;
|
16936
|
+
height: 8px;
|
16731
16937
|
}
|
16732
16938
|
|
16733
|
-
.
|
16734
|
-
|
16939
|
+
._large_4p85e_24 ._dot_4p85e_8 {
|
16940
|
+
width: 12px;
|
16941
|
+
height: 12px;
|
16735
16942
|
}
|
16736
16943
|
|
16737
|
-
.
|
16738
|
-
|
16944
|
+
._visuallyHidden_4p85e_59 {
|
16945
|
+
position: absolute;
|
16946
|
+
width: 1px;
|
16947
|
+
height: 1px;
|
16948
|
+
padding: 0;
|
16949
|
+
margin: -1px;
|
16950
|
+
overflow: hidden;
|
16951
|
+
clip: rect(0, 0, 0, 0);
|
16952
|
+
white-space: nowrap;
|
16953
|
+
border-width: 0;
|
16739
16954
|
}
|
16740
16955
|
|
16741
|
-
|
16742
|
-
|
16743
|
-
|
16956
|
+
@keyframes _pulse_4p85e_1 {
|
16957
|
+
0%,
|
16958
|
+
100% {
|
16959
|
+
transform: scale(0.7);
|
16960
|
+
opacity: 0.4;
|
16961
|
+
}
|
16962
|
+
50% {
|
16963
|
+
transform: scale(1);
|
16964
|
+
opacity: 0.8;
|
16965
|
+
}
|
16744
16966
|
}
|
16745
|
-
|
16746
|
-
|
16747
|
-
|
16748
|
-
|
16967
|
+
._progressContainer_1cjjr_1 {
|
16968
|
+
width: 100%;
|
16969
|
+
display: flex;
|
16970
|
+
align-content: flex-start;
|
16971
|
+
justify-content: flex-start;
|
16972
|
+
margin-left: 2.5em;
|
16749
16973
|
}
|
16750
16974
|
|
16751
|
-
.
|
16752
|
-
|
16753
|
-
margin: 0;
|
16754
|
-
padding: 0;
|
16755
|
-
height: var(--inspect-font-size-title-secondary);
|
16756
|
-
line-height: var(--inspect-font-size-title-secondary);
|
16975
|
+
._progressText_1cjjr_9 {
|
16976
|
+
margin-left: 0.4em;
|
16757
16977
|
}
|
16758
|
-
|
16759
|
-
|
16760
|
-
|
16978
|
+
._list_5fj0m_1 {
|
16979
|
+
width: 100%;
|
16980
|
+
margin-top: 1em;
|
16761
16981
|
}
|
16762
16982
|
|
16763
|
-
.
|
16764
|
-
|
16765
|
-
}
|
16766
|
-
.card-header-container {
|
16767
|
-
display: grid;
|
16768
|
-
grid-template-columns: max-content auto;
|
16769
|
-
column-gap: 0em;
|
16770
|
-
padding: 0.5em 0.5em 0.5em 0.5em;
|
16771
|
-
font-size: var(--inspect-font-size-small);
|
16772
|
-
font-weight: 600;
|
16773
|
-
border-bottom: solid 1px var(--bs-light-border-subtle);
|
16983
|
+
._item_5fj0m_6 {
|
16984
|
+
padding-bottom: 1em;
|
16774
16985
|
}
|
16775
|
-
|
16776
|
-
|
16777
|
-
padding-right: 0.2rem;
|
16986
|
+
._tabPanel_6o9gh_1 {
|
16987
|
+
padding-bottom: 1em;
|
16778
16988
|
}
|
16779
16989
|
|
16780
|
-
.
|
16990
|
+
._tabControls_6o9gh_5 {
|
16991
|
+
position: sticky;
|
16992
|
+
z-index: 1001;
|
16993
|
+
top: 0;
|
16781
16994
|
background-color: var(--bs-body-bg);
|
16782
|
-
|
16783
|
-
padding: 0.5em;
|
16784
16995
|
}
|
16785
16996
|
|
16786
|
-
.
|
16787
|
-
|
16788
|
-
border: solid 1px var(--bs-light-border-subtle);
|
16789
|
-
border-radius: var(--bs-border-radius);
|
16997
|
+
._fullWidth_6o9gh_12 {
|
16998
|
+
width: 100%;
|
16790
16999
|
}
|
16791
17000
|
|
16792
|
-
.
|
16793
|
-
|
17001
|
+
._metadataPanel_6o9gh_16 {
|
17002
|
+
display: flex;
|
17003
|
+
flex-wrap: wrap;
|
17004
|
+
align-items: stretch;
|
17005
|
+
gap: 1em;
|
17006
|
+
padding-left: 0;
|
17007
|
+
margin-top: 0.5em;
|
16794
17008
|
}
|
16795
17009
|
|
16796
|
-
.
|
16797
|
-
|
16798
|
-
|
17010
|
+
._padded_6o9gh_25 {
|
17011
|
+
padding-left: 0.8em;
|
17012
|
+
margin-top: 0.4em;
|
16799
17013
|
}
|
16800
17014
|
|
16801
|
-
.
|
16802
|
-
|
16803
|
-
padding-right: 0.5rem;
|
17015
|
+
._error_6o9gh_30 {
|
17016
|
+
padding-top: 0.5em;
|
16804
17017
|
}
|
16805
17018
|
|
16806
|
-
.
|
16807
|
-
|
16808
|
-
opacity: 0.8;
|
16809
|
-
flex: 1 1 auto;
|
16810
|
-
font-size: var(--inspect-font-size-smaller);
|
16811
|
-
padding-right: 0;
|
16812
|
-
padding-left: 0;
|
16813
|
-
transition: opacity 0.2s ease-out;
|
16814
|
-
display: flex;
|
16815
|
-
justify-content: space-between;
|
17019
|
+
._ansi_6o9gh_34 {
|
17020
|
+
margin: 1em 0;
|
16816
17021
|
}
|
16817
17022
|
|
16818
|
-
.
|
16819
|
-
|
16820
|
-
text-align: right;
|
16821
|
-
padding: 0 0.5em 0.1em 0.5em;
|
16822
|
-
font-size: var(--inspect-font-size-smaller);
|
17023
|
+
._noTop_6o9gh_38 {
|
17024
|
+
margin-top: 0;
|
16823
17025
|
}
|
16824
17026
|
|
16825
|
-
.
|
16826
|
-
padding: 0;
|
16827
|
-
}
|
16828
|
-
._item_1uzhd_1 {
|
16829
|
-
margin-bottom: 0em;
|
16830
|
-
}
|
16831
|
-
._grid_14885_1 {
|
17027
|
+
._timePanel_6o9gh_42 {
|
16832
17028
|
display: grid;
|
16833
|
-
grid-template-columns: max-content
|
17029
|
+
grid-template-columns: max-content max-content;
|
17030
|
+
grid-template-rows: auto;
|
16834
17031
|
column-gap: 0.5em;
|
16835
|
-
|
17032
|
+
min-width: 200px;
|
16836
17033
|
}
|
16837
17034
|
|
16838
|
-
.
|
16839
|
-
|
16840
|
-
white-space: nowrap;
|
16841
|
-
}
|
16842
|
-
._icon_59zaz_1 {
|
16843
|
-
margin-right: 0.3rem;
|
17035
|
+
._chat_6o9gh_50 {
|
17036
|
+
padding: 1em;
|
16844
17037
|
}
|
16845
17038
|
|
16846
|
-
.
|
16847
|
-
|
16848
|
-
margin-top: 0.2rem;
|
16849
|
-
margin-bottom: 0.3rem;
|
17039
|
+
._padded_6o9gh_25 {
|
17040
|
+
padding: 1em;
|
16850
17041
|
}
|
16851
17042
|
|
16852
|
-
.
|
16853
|
-
|
17043
|
+
._transcriptContainer_6o9gh_58 {
|
17044
|
+
padding-bottom: 1em;
|
16854
17045
|
}
|
16855
|
-
.
|
16856
|
-
|
16857
|
-
|
16858
|
-
|
17046
|
+
._flatBody_1uw6w_1 {
|
17047
|
+
color: var(--bs-danger);
|
17048
|
+
display: grid;
|
17049
|
+
grid-template-columns: max-content max-content;
|
17050
|
+
column-gap: 0.2em;
|
17051
|
+
margin-top: 0.4rem;
|
16859
17052
|
}
|
16860
17053
|
|
16861
|
-
.
|
16862
|
-
|
17054
|
+
._iconSmall_1uw6w_9 {
|
17055
|
+
font-size: var(--inspect-font-size-small);
|
17056
|
+
line-height: var(--inspect-font-size-small);
|
17057
|
+
height: var(--inspect-font-size-small);
|
16863
17058
|
}
|
16864
17059
|
|
16865
|
-
.
|
16866
|
-
|
16867
|
-
|
16868
|
-
|
16869
|
-
|
17060
|
+
._lineBase_1uw6w_15 {
|
17061
|
+
font-size: var(--inspect-font-size-base);
|
17062
|
+
line-height: var(--inspect-font-size-base);
|
17063
|
+
height: var(--inspect-font-size-base);
|
17064
|
+
max-width: 30em;
|
16870
17065
|
}
|
16871
|
-
.
|
16872
|
-
|
16873
|
-
width: unset;
|
16874
|
-
text-align: left;
|
16875
|
-
padding-left: 0.6rem;
|
16876
|
-
padding-right: 0.6rem;
|
17066
|
+
._target_tv989_1 {
|
17067
|
+
padding-left: 0;
|
16877
17068
|
}
|
16878
17069
|
|
16879
|
-
.
|
16880
|
-
|
16881
|
-
width: unset;
|
16882
|
-
padding-left: 0.6rem;
|
16883
|
-
padding-right: 0.6rem;
|
17070
|
+
._answer_tv989_5 {
|
17071
|
+
padding-left: 0;
|
16884
17072
|
}
|
16885
17073
|
|
16886
|
-
.
|
16887
|
-
|
17074
|
+
._grid_tv989_9 {
|
17075
|
+
display: grid;
|
17076
|
+
grid-column-gap: 1em;
|
17077
|
+
border-bottom: solid var(--bs-border-color) 1px;
|
17078
|
+
padding: 1em 1em 1em 1em;
|
16888
17079
|
}
|
16889
17080
|
|
16890
|
-
.
|
16891
|
-
|
17081
|
+
._centerLabel_tv989_16 {
|
17082
|
+
display: flex;
|
17083
|
+
justify-content: center;
|
16892
17084
|
}
|
16893
17085
|
|
16894
|
-
.
|
16895
|
-
|
17086
|
+
._centerValue_tv989_21 {
|
17087
|
+
display: flex;
|
17088
|
+
align-items: center;
|
16896
17089
|
}
|
16897
17090
|
|
16898
|
-
.
|
16899
|
-
|
16900
|
-
padding-bottom: 1em;
|
16901
|
-
margin-left: 0;
|
17091
|
+
._wrap_tv989_26 {
|
17092
|
+
word-wrap: anywhere;
|
16902
17093
|
}
|
16903
17094
|
|
16904
|
-
.
|
16905
|
-
|
16906
|
-
justify-content: space-between;
|
16907
|
-
flex-wrap: wrap;
|
16908
|
-
padding-bottom: 1em;
|
16909
|
-
margin-bottom: 0.5em;
|
17095
|
+
._titled_tv989_30:hover {
|
17096
|
+
cursor: pointer;
|
16910
17097
|
}
|
16911
17098
|
|
16912
|
-
.
|
16913
|
-
|
16914
|
-
|
16915
|
-
grid-template-rows: auto;
|
16916
|
-
margin-left: 0.5em;
|
16917
|
-
gap: 1em;
|
16918
|
-
}
|
16919
|
-
._task-error-display_1624b_1 {
|
16920
|
-
font-size: clamp(0.2rem, calc(0.2em + 0.93vw), 0.9rem);
|
16921
|
-
}
|
16922
|
-
.download-button {
|
16923
|
-
margin-top: 3em;
|
16924
|
-
font-size: var(--inspect-font-size-small);
|
17099
|
+
._value_tv989_34 {
|
17100
|
+
flex-direction: column;
|
17101
|
+
padding-top: 0.1em;
|
16925
17102
|
}
|
16926
|
-
.
|
17103
|
+
._container_181fj_1 {
|
16927
17104
|
display: grid;
|
16928
|
-
grid-template-
|
16929
|
-
|
16930
|
-
|
17105
|
+
grid-template-columns:
|
17106
|
+
minmax(0, max-content) minmax(0, max-content) minmax(0, max-content)
|
17107
|
+
5fr;
|
17108
|
+
column-gap: 0.75em;
|
16931
17109
|
}
|
16932
17110
|
|
16933
|
-
.
|
16934
|
-
|
16935
|
-
}
|
16936
|
-
.tool-button i {
|
16937
|
-
margin-right: 0.5em;
|
16938
|
-
}
|
16939
|
-
._jsonTab_6pq03_1 {
|
16940
|
-
padding: 0.5rem;
|
16941
|
-
font-size: var(--inspect-font-size-small);
|
16942
|
-
width: 100%;
|
17111
|
+
._container_181fj_1 ._cell_181fj_9 {
|
17112
|
+
margin-bottom: 0.5em;
|
16943
17113
|
}
|
16944
|
-
|
16945
|
-
|
16946
|
-
grid-
|
16947
|
-
row-gap: 2em;
|
16948
|
-
column-gap: 1em;
|
17114
|
+
|
17115
|
+
._fullWidth_181fj_13 {
|
17116
|
+
grid-column: 1 / -1;
|
16949
17117
|
}
|
16950
17118
|
|
16951
|
-
.
|
16952
|
-
|
16953
|
-
grid-template-columns: max-content auto;
|
16954
|
-
column-gap: 1em;
|
16955
|
-
row-gap: 0.1em;
|
17119
|
+
._heading_181fj_17 {
|
17120
|
+
font-weight: 600;
|
16956
17121
|
}
|
16957
17122
|
|
16958
|
-
.
|
16959
|
-
|
17123
|
+
._padded_181fj_21 {
|
17124
|
+
padding-bottom: 3em;
|
16960
17125
|
}
|
16961
17126
|
|
16962
|
-
.
|
16963
|
-
grid-column: -1/1;
|
17127
|
+
._separator_181fj_25 {
|
16964
17128
|
height: 1px;
|
16965
17129
|
background-color: var(--bs-light-border-subtle);
|
16966
17130
|
}
|
16967
|
-
._wrapper_sq96g_1 {
|
16968
|
-
display: grid;
|
16969
|
-
grid-template-columns: 0 auto auto;
|
16970
|
-
column-gap: 1.5em;
|
16971
|
-
row-gap: 0.2em;
|
16972
|
-
}
|
16973
17131
|
|
16974
|
-
.
|
16975
|
-
|
17132
|
+
._separatorPadded_181fj_30 {
|
17133
|
+
margin-top: 0.5em;
|
17134
|
+
margin-bottom: 0.5em;
|
16976
17135
|
}
|
16977
17136
|
|
16978
|
-
.
|
16979
|
-
|
17137
|
+
._headerSep_181fj_35 {
|
17138
|
+
margin-top: 0.1em;
|
17139
|
+
margin-bottom: 0.2em;
|
16980
17140
|
}
|
16981
|
-
|
16982
|
-
|
16983
|
-
|
17141
|
+
._label_las07_1 {
|
17142
|
+
padding-right: 2em !important;
|
17143
|
+
padding-left: 0 !important;
|
17144
|
+
padding-bottom: 0 !important;
|
17145
|
+
font-weight: 400;
|
17146
|
+
padding-bottom: 0 !important;
|
16984
17147
|
}
|
16985
17148
|
|
16986
|
-
.
|
16987
|
-
|
16988
|
-
height: 1px;
|
16989
|
-
background-color: var(--bs-light-border-subtle);
|
17149
|
+
._wordBreak_las07_9 {
|
17150
|
+
word-break: break-word;
|
16990
17151
|
}
|
16991
17152
|
|
16992
|
-
.
|
16993
|
-
margin-bottom: 1em;
|
16994
|
-
}
|
16995
|
-
._table_z217i_1 {
|
17153
|
+
._scoreTable_las07_13 {
|
16996
17154
|
width: 100%;
|
17155
|
+
margin-bottom: 1em;
|
16997
17156
|
}
|
16998
17157
|
|
16999
|
-
.
|
17000
|
-
|
17158
|
+
._bottomBorder_las07_18 {
|
17159
|
+
border-bottom-color: #00000000;
|
17001
17160
|
}
|
17002
17161
|
|
17003
|
-
.
|
17004
|
-
padding:
|
17005
|
-
font-weight: 300;
|
17162
|
+
._headerScore_las07_22 {
|
17163
|
+
padding-left: 2em;
|
17006
17164
|
}
|
17007
17165
|
|
17008
|
-
.
|
17009
|
-
padding-right:
|
17166
|
+
._targetValue_las07_26 {
|
17167
|
+
padding-right: 2em !important;
|
17168
|
+
padding-left: 0 !important;
|
17169
|
+
padding-top: 0 !important;
|
17010
17170
|
}
|
17011
17171
|
|
17012
|
-
.
|
17013
|
-
padding-
|
17172
|
+
._answerValue_las07_32 {
|
17173
|
+
padding-left: 0 !important;
|
17174
|
+
padding-top: 0 !important;
|
17014
17175
|
}
|
17015
|
-
|
17016
|
-
|
17017
|
-
padding-
|
17018
|
-
|
17019
|
-
display: flex;
|
17020
|
-
flex-wrap: wrap;
|
17021
|
-
gap: 1em;
|
17176
|
+
|
17177
|
+
._scoreValue_las07_37 {
|
17178
|
+
padding-left: 2em !important;
|
17179
|
+
padding-top: 0 !important;
|
17022
17180
|
}
|
17023
17181
|
|
17024
|
-
.
|
17025
|
-
|
17026
|
-
min-width: 200px;
|
17027
|
-
width: fit-content;
|
17182
|
+
._noLeft_las07_42 {
|
17183
|
+
padding-left: 0 !important;
|
17028
17184
|
}
|
17029
17185
|
|
17030
|
-
.
|
17031
|
-
|
17032
|
-
min-width: 300px;
|
17033
|
-
width: fit-content;
|
17186
|
+
._noTop_las07_46 {
|
17187
|
+
margin-top: 0 !important;
|
17034
17188
|
}
|
17035
|
-
|
17036
|
-
|
17037
|
-
|
17038
|
-
justify-content: center;
|
17189
|
+
|
17190
|
+
._scoreCard_las07_50 {
|
17191
|
+
padding-top: 0.5em;
|
17039
17192
|
}
|
17040
17193
|
|
17041
|
-
.
|
17042
|
-
|
17194
|
+
._scores_las07_54 {
|
17195
|
+
padding-top: 1em;
|
17196
|
+
}
|
17197
|
+
._eventRow_1dssq_1 {
|
17043
17198
|
display: grid;
|
17044
|
-
grid-template-columns:
|
17045
|
-
column-gap:
|
17199
|
+
grid-template-columns: 10px 1fr;
|
17200
|
+
column-gap: 3px;
|
17201
|
+
cursor: pointer;
|
17046
17202
|
}
|
17047
|
-
|
17048
|
-
.
|
17049
|
-
|
17050
|
-
flex-direction: column;
|
17051
|
-
align-items: center;
|
17203
|
+
|
17204
|
+
._eventRow_1dssq_1._selected_1dssq_8 {
|
17205
|
+
font-weight: 800;
|
17052
17206
|
}
|
17053
17207
|
|
17054
|
-
.
|
17055
|
-
|
17056
|
-
|
17057
|
-
align-items: center;
|
17058
|
-
justify-content: center;
|
17208
|
+
._eventRow_1dssq_1 ._toggle_1dssq_12 {
|
17209
|
+
font-size: 0.7em;
|
17210
|
+
margin-top: 4px;
|
17059
17211
|
}
|
17060
17212
|
|
17061
|
-
.
|
17062
|
-
|
17213
|
+
._eventLink_1dssq_17 {
|
17214
|
+
color: var(--bs-body);
|
17215
|
+
text-decoration: none;
|
17216
|
+
cursor: pointer;
|
17063
17217
|
}
|
17064
17218
|
|
17065
|
-
.
|
17066
|
-
|
17067
|
-
|
17219
|
+
._eventLink_1dssq_17:hover {
|
17220
|
+
text-decoration: underline;
|
17221
|
+
color: var(--bs-link-hover-color);
|
17068
17222
|
}
|
17069
17223
|
|
17070
|
-
.
|
17071
|
-
|
17072
|
-
|
17073
|
-
|
17224
|
+
._label_1dssq_28 {
|
17225
|
+
white-space: nowrap;
|
17226
|
+
overflow: hidden;
|
17227
|
+
text-overflow: ellipsis;
|
17074
17228
|
}
|
17075
17229
|
|
17076
|
-
.
|
17077
|
-
|
17078
|
-
display: inline-block;
|
17079
|
-
animation: _pulse_4p85e_1 1.5s ease-in-out infinite;
|
17230
|
+
._icon_1dssq_34 {
|
17231
|
+
margin-right: 3px;
|
17080
17232
|
}
|
17081
17233
|
|
17082
|
-
.
|
17083
|
-
|
17234
|
+
._progress_1dssq_38 {
|
17235
|
+
margin-left: 0.3em !important;
|
17084
17236
|
}
|
17085
17237
|
|
17086
|
-
.
|
17087
|
-
|
17238
|
+
._popover_1dssq_42 {
|
17239
|
+
min-width: 300px;
|
17240
|
+
max-width: 80%;
|
17241
|
+
}
|
17242
|
+
._node_1d5c2_1 {
|
17243
|
+
display: grid;
|
17244
|
+
column-gap: 0.3em;
|
17245
|
+
grid-template-columns: max-content 1fr;
|
17088
17246
|
}
|
17089
17247
|
|
17090
|
-
.
|
17091
|
-
|
17092
|
-
|
17248
|
+
._panel_1d5c2_7 {
|
17249
|
+
margin-top: 0.65rem;
|
17250
|
+
overflow: visible;
|
17251
|
+
}
|
17252
|
+
._container_1zq6s_1 {
|
17253
|
+
display: grid;
|
17254
|
+
width: 100%;
|
17255
|
+
grid-template-columns: 180px 1fr;
|
17256
|
+
min-height: 100vh;
|
17257
|
+
transition: grid-template-columns 0.3s ease;
|
17093
17258
|
}
|
17094
17259
|
|
17095
|
-
.
|
17096
|
-
|
17097
|
-
height: 8px;
|
17260
|
+
._container_1zq6s_1._collapsed_1zq6s_9 {
|
17261
|
+
grid-template-columns: 1.5em 1fr;
|
17098
17262
|
}
|
17099
17263
|
|
17100
|
-
.
|
17101
|
-
|
17102
|
-
|
17264
|
+
._treeContainer_1zq6s_13 {
|
17265
|
+
padding: 0.5em;
|
17266
|
+
border-right: solid 1px var(--bs-light-border-subtle);
|
17267
|
+
width: 100%;
|
17268
|
+
height: 100%;
|
17103
17269
|
}
|
17104
17270
|
|
17105
|
-
.
|
17106
|
-
|
17107
|
-
width: 1px;
|
17108
|
-
height: 1px;
|
17109
|
-
padding: 0;
|
17110
|
-
margin: -1px;
|
17111
|
-
overflow: hidden;
|
17112
|
-
clip: rect(0, 0, 0, 0);
|
17113
|
-
white-space: nowrap;
|
17114
|
-
border-width: 0;
|
17271
|
+
._collapsed_1zq6s_9 ._treeContainer_1zq6s_13 {
|
17272
|
+
border-top: solid 1px var(--bs-light-border-subtle);
|
17115
17273
|
}
|
17116
17274
|
|
17117
|
-
|
17118
|
-
|
17119
|
-
100% {
|
17120
|
-
transform: scale(0.7);
|
17121
|
-
opacity: 0.4;
|
17122
|
-
}
|
17123
|
-
50% {
|
17124
|
-
transform: scale(1);
|
17125
|
-
opacity: 0.8;
|
17126
|
-
}
|
17127
|
-
}
|
17128
|
-
._progressContainer_1cjjr_1 {
|
17129
|
-
width: 100%;
|
17130
|
-
display: flex;
|
17131
|
-
align-content: flex-start;
|
17132
|
-
justify-content: flex-start;
|
17133
|
-
margin-left: 2.5em;
|
17275
|
+
._listContainer_1zq6s_24 {
|
17276
|
+
background-color: var(--bs-body-bg);
|
17134
17277
|
}
|
17135
17278
|
|
17136
|
-
.
|
17137
|
-
margin-
|
17279
|
+
._outline_1zq6s_28 {
|
17280
|
+
margin-bottom: 1em;
|
17138
17281
|
}
|
17139
|
-
|
17140
|
-
|
17141
|
-
|
17282
|
+
|
17283
|
+
._outlineToggle_1zq6s_32 {
|
17284
|
+
cursor: pointer;
|
17285
|
+
font-size: 0.8em;
|
17286
|
+
position: absolute;
|
17287
|
+
top: 0.5em;
|
17288
|
+
right: 0.5em;
|
17142
17289
|
}
|
17143
17290
|
|
17144
|
-
.
|
17145
|
-
|
17291
|
+
._collapsed_1zq6s_9 ._outline_1zq6s_28 {
|
17292
|
+
display: none;
|
17146
17293
|
}
|
17147
|
-
.
|
17148
|
-
|
17294
|
+
._title_19l1b_1 {
|
17295
|
+
margin-left: 0.5em;
|
17296
|
+
display: grid;
|
17297
|
+
grid-template-columns: max-content max-content minmax(0, 1fr);
|
17298
|
+
column-gap: 0.5em;
|
17149
17299
|
}
|
17150
17300
|
|
17151
|
-
.
|
17152
|
-
|
17153
|
-
|
17154
|
-
|
17155
|
-
|
17301
|
+
._contents_19l1b_8 {
|
17302
|
+
padding: 0.4em;
|
17303
|
+
margin-bottom: 0;
|
17304
|
+
border: solid 1px var(--bs-light-border-subtle);
|
17305
|
+
border-radius: var(--bs-border-radius);
|
17156
17306
|
}
|
17157
|
-
|
17158
|
-
|
17159
|
-
|
17307
|
+
._tab_1je38_1 {
|
17308
|
+
min-width: 4rem;
|
17309
|
+
padding: 0.1rem 0.6rem;
|
17310
|
+
border-radius: var(--bs-border-radius);
|
17311
|
+
}
|
17312
|
+
._navs_1vm6p_1 {
|
17313
|
+
margin-right: 0;
|
17314
|
+
}
|
17315
|
+
._label_1i908_1 {
|
17316
|
+
margin-right: 0.2em;
|
17317
|
+
justify-self: end;
|
17160
17318
|
}
|
17161
17319
|
|
17162
|
-
.
|
17320
|
+
._navs_1i908_6 {
|
17321
|
+
justify-self: end;
|
17163
17322
|
display: flex;
|
17164
|
-
flex-
|
17165
|
-
align-items: stretch;
|
17166
|
-
gap: 1em;
|
17167
|
-
padding-left: 0;
|
17168
|
-
margin-top: 0.5em;
|
17323
|
+
flex-direction: columns;
|
17169
17324
|
}
|
17170
17325
|
|
17171
|
-
.
|
17172
|
-
|
17173
|
-
|
17326
|
+
._card_1i908_12 {
|
17327
|
+
position: relative;
|
17328
|
+
background-color: var(--bs-body-bg);
|
17329
|
+
padding: 0.625rem;
|
17330
|
+
border: solid 1px var(--bs-light-border-subtle);
|
17331
|
+
border-radius: var(--bs-border-radius);
|
17174
17332
|
}
|
17175
17333
|
|
17176
|
-
.
|
17177
|
-
padding
|
17334
|
+
._cardContent_1i908_20 {
|
17335
|
+
padding: 0;
|
17336
|
+
display: inherit;
|
17178
17337
|
}
|
17179
17338
|
|
17180
|
-
.
|
17181
|
-
|
17339
|
+
._cardContent_1i908_20._hidden_1i908_25 {
|
17340
|
+
display: none;
|
17182
17341
|
}
|
17183
17342
|
|
17184
|
-
.
|
17185
|
-
|
17343
|
+
._hidden_1i908_25 {
|
17344
|
+
display: none;
|
17186
17345
|
}
|
17187
17346
|
|
17188
|
-
.
|
17189
|
-
|
17190
|
-
|
17191
|
-
|
17192
|
-
|
17193
|
-
|
17347
|
+
._copyLink_1i908_33 {
|
17348
|
+
font-size: 1.2em;
|
17349
|
+
height: 1em;
|
17350
|
+
opacity: 0;
|
17351
|
+
padding-left: 0.2em;
|
17352
|
+
padding-right: 2em;
|
17194
17353
|
}
|
17195
17354
|
|
17196
|
-
.
|
17197
|
-
|
17355
|
+
._hover_1i908_41 ._copyLink_1i908_33 {
|
17356
|
+
opacity: 1;
|
17198
17357
|
}
|
17199
17358
|
|
17200
|
-
.
|
17201
|
-
|
17359
|
+
._root_1i908_45 {
|
17360
|
+
background-color: var(--bs-light-bg-subtle);
|
17361
|
+
border-radius: unset;
|
17202
17362
|
}
|
17203
17363
|
|
17204
|
-
.
|
17205
|
-
|
17206
|
-
|
17207
|
-
|
17208
|
-
|
17209
|
-
|
17210
|
-
|
17211
|
-
|
17212
|
-
|
17213
|
-
|
17364
|
+
._bottomDongle_1i908_50 {
|
17365
|
+
display: block;
|
17366
|
+
position: absolute;
|
17367
|
+
margin: 0 auto;
|
17368
|
+
width: fit-content;
|
17369
|
+
bottom: -10px;
|
17370
|
+
left: 50%;
|
17371
|
+
transform: translateX(-50%);
|
17372
|
+
background-color: var(--bs-body-bg);
|
17373
|
+
border: solid 1px var(--bs-light-border-subtle);
|
17374
|
+
color: var(--bs-secondary);
|
17214
17375
|
|
17215
|
-
|
17216
|
-
|
17217
|
-
|
17218
|
-
height: var(--inspect-font-size-small);
|
17376
|
+
border-radius: var(--bs-border-radius);
|
17377
|
+
padding: 0em 0.4em;
|
17378
|
+
cursor: pointer;
|
17219
17379
|
}
|
17220
17380
|
|
17221
|
-
.
|
17222
|
-
|
17223
|
-
line-height: var(--inspect-font-size-base);
|
17224
|
-
height: var(--inspect-font-size-base);
|
17225
|
-
max-width: 30em;
|
17226
|
-
}
|
17227
|
-
._target_tv989_1 {
|
17228
|
-
padding-left: 0;
|
17381
|
+
._dongleIcon_1i908_67 {
|
17382
|
+
padding-right: 0.3em;
|
17229
17383
|
}
|
17230
|
-
|
17231
|
-
.
|
17232
|
-
padding-left: 0;
|
17384
|
+
._panel_vz394_1 {
|
17385
|
+
margin: 0.2em 0;
|
17233
17386
|
}
|
17234
|
-
|
17235
|
-
|
17387
|
+
._grid_1eq5o_1 {
|
17388
|
+
width: 100%;
|
17236
17389
|
display: grid;
|
17237
|
-
grid-
|
17238
|
-
|
17239
|
-
padding: 1em 1em 1em 1em;
|
17390
|
+
grid-template-columns: 1fr max-content;
|
17391
|
+
column-gap: 1em;
|
17240
17392
|
}
|
17241
17393
|
|
17242
|
-
.
|
17243
|
-
|
17244
|
-
justify-content: center;
|
17394
|
+
._jsonPanel_1eq5o_8 {
|
17395
|
+
padding: 0 !important;
|
17245
17396
|
}
|
17246
|
-
|
17247
|
-
|
17248
|
-
display: flex;
|
17249
|
-
align-items: center;
|
17397
|
+
._container_1brs9_1 {
|
17398
|
+
margin: 1em 0 0 0;
|
17250
17399
|
}
|
17251
17400
|
|
17252
|
-
.
|
17253
|
-
|
17401
|
+
._title_1brs9_5 {
|
17402
|
+
font-weight: 600;
|
17403
|
+
padding-bottom: 0.3em;
|
17254
17404
|
}
|
17255
|
-
|
17256
|
-
|
17257
|
-
|
17405
|
+
._container_e0l2n_1 {
|
17406
|
+
margin: 0.5em 0 0 0;
|
17407
|
+
width: 100%;
|
17258
17408
|
}
|
17259
17409
|
|
17260
|
-
.
|
17261
|
-
flex-direction: column;
|
17262
|
-
padding-top: 0.1em;
|
17263
|
-
}
|
17264
|
-
._container_181fj_1 {
|
17410
|
+
._all_e0l2n_6 {
|
17265
17411
|
display: grid;
|
17266
|
-
grid-template-columns:
|
17267
|
-
|
17268
|
-
5fr;
|
17269
|
-
column-gap: 0.75em;
|
17412
|
+
grid-template-columns: 1fr 1fr 1fr;
|
17413
|
+
column-gap: 1em;
|
17270
17414
|
}
|
17271
17415
|
|
17272
|
-
.
|
17273
|
-
|
17416
|
+
._tableSelection_e0l2n_12 {
|
17417
|
+
width: fit-content;
|
17418
|
+
align-self: start;
|
17419
|
+
justify-self: start;
|
17274
17420
|
}
|
17275
17421
|
|
17276
|
-
.
|
17277
|
-
grid-column: 1
|
17422
|
+
._tools_e0l2n_18 {
|
17423
|
+
grid-column: -1/1;
|
17278
17424
|
}
|
17279
17425
|
|
17280
|
-
.
|
17281
|
-
|
17426
|
+
._codePre_e0l2n_22 {
|
17427
|
+
background: var(--bs-light);
|
17428
|
+
width: 100%;
|
17429
|
+
padding: 0.5em;
|
17430
|
+
border-radius: var(--bs-border-radius);
|
17282
17431
|
}
|
17283
17432
|
|
17284
|
-
.
|
17285
|
-
|
17433
|
+
._code_e0l2n_22 {
|
17434
|
+
white-space: pre-wrap !important;
|
17435
|
+
word-wrap: anywhere !important;
|
17286
17436
|
}
|
17287
17437
|
|
17288
|
-
.
|
17289
|
-
|
17290
|
-
background-color: var(--bs-light-border-subtle);
|
17438
|
+
._progress_e0l2n_34 {
|
17439
|
+
margin-left: 0.5em;
|
17291
17440
|
}
|
17292
17441
|
|
17293
|
-
.
|
17294
|
-
|
17295
|
-
|
17442
|
+
._toolConfig_e0l2n_38 {
|
17443
|
+
display: grid;
|
17444
|
+
grid-template-columns: max-content auto;
|
17445
|
+
column-gap: 1em;
|
17446
|
+
row-gap: 0.5em;
|
17447
|
+
padding-top: 0.5em;
|
17296
17448
|
}
|
17297
17449
|
|
17298
|
-
.
|
17299
|
-
|
17300
|
-
|
17301
|
-
|
17302
|
-
|
17303
|
-
|
17304
|
-
padding-
|
17305
|
-
padding-bottom: 0 !important;
|
17306
|
-
font-weight: 400;
|
17307
|
-
padding-bottom: 0 !important;
|
17308
|
-
}
|
17309
|
-
|
17310
|
-
._wordBreak_las07_9 {
|
17311
|
-
word-break: break-word;
|
17450
|
+
._toolChoice_e0l2n_46 {
|
17451
|
+
border-top: solid var(--bs-light-border-subtle) 1px;
|
17452
|
+
display: grid;
|
17453
|
+
grid-template-columns: max-content auto;
|
17454
|
+
column-gap: 1em;
|
17455
|
+
margin-top: 0.5em;
|
17456
|
+
padding-top: 0.5em;
|
17312
17457
|
}
|
17313
|
-
|
17314
|
-
|
17315
|
-
|
17316
|
-
|
17458
|
+
._wrapper_45f60_1 {
|
17459
|
+
display: grid;
|
17460
|
+
grid-template-columns: 0 auto auto;
|
17461
|
+
column-gap: 1.5em;
|
17462
|
+
row-gap: 0.2em;
|
17317
17463
|
}
|
17318
17464
|
|
17319
|
-
.
|
17320
|
-
|
17465
|
+
._col2_45f60_8 {
|
17466
|
+
grid-column: 2;
|
17321
17467
|
}
|
17322
17468
|
|
17323
|
-
.
|
17324
|
-
|
17469
|
+
._col1_3_45f60_12 {
|
17470
|
+
grid-column: 1/3;
|
17325
17471
|
}
|
17326
17472
|
|
17327
|
-
.
|
17328
|
-
|
17329
|
-
padding-left: 0 !important;
|
17330
|
-
padding-top: 0 !important;
|
17473
|
+
._col3_45f60_16 {
|
17474
|
+
grid-column: 3;
|
17331
17475
|
}
|
17332
17476
|
|
17333
|
-
.
|
17334
|
-
|
17335
|
-
|
17477
|
+
._separator_45f60_20 {
|
17478
|
+
grid-column: -1/1;
|
17479
|
+
height: 1px;
|
17480
|
+
background-color: var(--bs-light-border-subtle);
|
17336
17481
|
}
|
17337
17482
|
|
17338
|
-
.
|
17339
|
-
|
17340
|
-
padding-top: 0 !important;
|
17483
|
+
._topMargin_45f60_26 {
|
17484
|
+
margin-top: 1em;
|
17341
17485
|
}
|
17342
|
-
|
17343
|
-
|
17344
|
-
padding-left: 0 !important;
|
17486
|
+
._noMargin_1a3fk_1 {
|
17487
|
+
margin-bottom: 0;
|
17345
17488
|
}
|
17346
17489
|
|
17347
|
-
.
|
17348
|
-
|
17490
|
+
._code_1a3fk_5 {
|
17491
|
+
background: var(--bs-light);
|
17492
|
+
border-radius: var(--bs-border-radius);
|
17349
17493
|
}
|
17350
17494
|
|
17351
|
-
.
|
17352
|
-
|
17495
|
+
._sample_1a3fk_10 {
|
17496
|
+
margin: 1em 0em;
|
17353
17497
|
}
|
17354
17498
|
|
17355
|
-
.
|
17356
|
-
|
17357
|
-
|
17358
|
-
|
17359
|
-
|
17360
|
-
grid-template-columns: 10px 1fr;
|
17361
|
-
column-gap: 3px;
|
17362
|
-
cursor: pointer;
|
17499
|
+
._section_1a3fk_14 {
|
17500
|
+
display: flex;
|
17501
|
+
flex-wrap: wrap;
|
17502
|
+
gap: 1em;
|
17503
|
+
overflow-wrap: break-word;
|
17363
17504
|
}
|
17364
17505
|
|
17365
|
-
.
|
17366
|
-
|
17506
|
+
._metadata_1a3fk_21 {
|
17507
|
+
margin: 0.5em 0;
|
17367
17508
|
}
|
17368
|
-
|
17369
|
-
|
17370
|
-
font-size: 0.7em;
|
17371
|
-
margin-top: 4px;
|
17509
|
+
._contents_1irga_1 {
|
17510
|
+
margin-top: 0.5em;
|
17372
17511
|
}
|
17373
17512
|
|
17374
|
-
.
|
17375
|
-
|
17376
|
-
text-decoration: none;
|
17377
|
-
cursor: pointer;
|
17513
|
+
._contents_1irga_1 > :last-child {
|
17514
|
+
margin-bottom: 0;
|
17378
17515
|
}
|
17379
17516
|
|
17380
|
-
.
|
17381
|
-
|
17382
|
-
|
17517
|
+
._twoColumn_1irga_9 {
|
17518
|
+
display: grid;
|
17519
|
+
grid-template-columns: auto 1fr;
|
17520
|
+
column-gap: 1.5em;
|
17383
17521
|
}
|
17384
17522
|
|
17385
|
-
.
|
17386
|
-
|
17387
|
-
overflow: hidden;
|
17388
|
-
text-overflow: ellipsis;
|
17523
|
+
._exec_1irga_15 {
|
17524
|
+
margin-top: 0;
|
17389
17525
|
}
|
17390
17526
|
|
17391
|
-
.
|
17392
|
-
margin-
|
17527
|
+
._result_1irga_19 {
|
17528
|
+
margin-top: 0.5em;
|
17393
17529
|
}
|
17394
17530
|
|
17395
|
-
.
|
17396
|
-
margin-
|
17531
|
+
._fileLabel_1irga_23 {
|
17532
|
+
margin-top: 0;
|
17533
|
+
margin-bottom: 0;
|
17397
17534
|
}
|
17398
17535
|
|
17399
|
-
.
|
17400
|
-
|
17401
|
-
|
17536
|
+
._wrapPre_1irga_28 {
|
17537
|
+
white-space: pre-wrap;
|
17538
|
+
word-wrap: break-word;
|
17539
|
+
overflow-wrap: break-word;
|
17540
|
+
margin-bottom: 0;
|
17402
17541
|
}
|
17403
|
-
.
|
17542
|
+
._explanation_1ww42_1 {
|
17404
17543
|
display: grid;
|
17405
|
-
|
17406
|
-
|
17544
|
+
grid-template-columns: max-content auto;
|
17545
|
+
column-gap: 1em;
|
17546
|
+
margin: 0.5em 0;
|
17407
17547
|
}
|
17408
17548
|
|
17409
|
-
.
|
17410
|
-
|
17411
|
-
|
17412
|
-
}
|
17413
|
-
._container_1zq6s_1 {
|
17414
|
-
display: grid;
|
17415
|
-
width: 100%;
|
17416
|
-
grid-template-columns: 180px 1fr;
|
17417
|
-
min-height: 100vh;
|
17418
|
-
transition: grid-template-columns 0.3s ease;
|
17549
|
+
._separator_1ww42_8 {
|
17550
|
+
grid-column: 1 / -1;
|
17551
|
+
border-bottom: solid 1px var(--bs-light-border-subtle);
|
17419
17552
|
}
|
17420
17553
|
|
17421
|
-
.
|
17422
|
-
|
17554
|
+
._metadata_1ww42_13 {
|
17555
|
+
margin: 0.5em 0;
|
17423
17556
|
}
|
17424
|
-
|
17425
|
-
|
17426
|
-
padding: 0.5em;
|
17427
|
-
border-right: solid 1px var(--bs-light-border-subtle);
|
17428
|
-
width: 100%;
|
17557
|
+
div.ap-wrapper {
|
17558
|
+
outline: none;
|
17429
17559
|
height: 100%;
|
17560
|
+
display: flex;
|
17561
|
+
justify-content: center;
|
17430
17562
|
}
|
17431
|
-
|
17432
|
-
._collapsed_1zq6s_9 ._treeContainer_1zq6s_13 {
|
17433
|
-
border-top: solid 1px var(--bs-light-border-subtle);
|
17434
|
-
}
|
17435
|
-
|
17436
|
-
._listContainer_1zq6s_24 {
|
17437
|
-
background-color: var(--bs-body-bg);
|
17438
|
-
}
|
17439
|
-
|
17440
|
-
._outline_1zq6s_28 {
|
17441
|
-
margin-bottom: 1em;
|
17442
|
-
}
|
17443
|
-
|
17444
|
-
._outlineToggle_1zq6s_32 {
|
17445
|
-
cursor: pointer;
|
17446
|
-
font-size: 0.8em;
|
17447
|
-
position: absolute;
|
17448
|
-
top: 0.5em;
|
17449
|
-
right: 0.5em;
|
17450
|
-
}
|
17451
|
-
|
17452
|
-
._collapsed_1zq6s_9 ._outline_1zq6s_28 {
|
17563
|
+
div.ap-wrapper .title-bar {
|
17453
17564
|
display: none;
|
17565
|
+
top: -78px;
|
17566
|
+
transition: top 0.15s linear;
|
17567
|
+
position: absolute;
|
17568
|
+
left: 0;
|
17569
|
+
right: 0;
|
17570
|
+
box-sizing: content-box;
|
17571
|
+
font-size: 20px;
|
17572
|
+
line-height: 1em;
|
17573
|
+
padding: 15px;
|
17574
|
+
font-family: sans-serif;
|
17575
|
+
color: white;
|
17576
|
+
background-color: rgba(0, 0, 0, 0.8);
|
17454
17577
|
}
|
17455
|
-
.
|
17456
|
-
|
17457
|
-
|
17458
|
-
|
17459
|
-
column-gap: 0.5em;
|
17578
|
+
div.ap-wrapper .title-bar img {
|
17579
|
+
vertical-align: middle;
|
17580
|
+
height: 48px;
|
17581
|
+
margin-right: 16px;
|
17460
17582
|
}
|
17461
|
-
|
17462
|
-
|
17463
|
-
|
17464
|
-
margin-bottom: 0;
|
17465
|
-
border: solid 1px var(--bs-light-border-subtle);
|
17466
|
-
border-radius: var(--bs-border-radius);
|
17583
|
+
div.ap-wrapper .title-bar a {
|
17584
|
+
color: white;
|
17585
|
+
text-decoration: underline;
|
17467
17586
|
}
|
17468
|
-
.
|
17469
|
-
|
17470
|
-
padding: 0.1rem 0.6rem;
|
17471
|
-
border-radius: var(--bs-border-radius);
|
17587
|
+
div.ap-wrapper .title-bar a:hover {
|
17588
|
+
text-decoration: none;
|
17472
17589
|
}
|
17473
|
-
.
|
17474
|
-
|
17590
|
+
div.ap-wrapper:fullscreen {
|
17591
|
+
background-color: #000;
|
17592
|
+
width: 100%;
|
17593
|
+
align-items: center;
|
17475
17594
|
}
|
17476
|
-
.
|
17477
|
-
|
17478
|
-
justify-self: end;
|
17595
|
+
div.ap-wrapper:fullscreen .title-bar {
|
17596
|
+
display: initial;
|
17479
17597
|
}
|
17480
|
-
|
17481
|
-
|
17482
|
-
justify-self: end;
|
17483
|
-
display: flex;
|
17484
|
-
flex-direction: columns;
|
17598
|
+
div.ap-wrapper:fullscreen.hud .title-bar {
|
17599
|
+
top: 0;
|
17485
17600
|
}
|
17486
|
-
|
17487
|
-
|
17601
|
+
div.ap-wrapper div.ap-player {
|
17602
|
+
text-align: left;
|
17603
|
+
display: inline-block;
|
17604
|
+
padding: 0px;
|
17488
17605
|
position: relative;
|
17489
|
-
|
17490
|
-
|
17491
|
-
|
17492
|
-
border-radius:
|
17493
|
-
|
17494
|
-
|
17495
|
-
._cardContent_1i908_20 {
|
17496
|
-
padding: 0;
|
17497
|
-
display: inherit;
|
17606
|
+
box-sizing: content-box;
|
17607
|
+
overflow: hidden;
|
17608
|
+
max-width: 100%;
|
17609
|
+
border-radius: 4px;
|
17610
|
+
font-size: 15px;
|
17611
|
+
background-color: var(--term-color-background);
|
17498
17612
|
}
|
17499
|
-
|
17500
|
-
|
17501
|
-
|
17502
|
-
|
17503
|
-
|
17504
|
-
|
17505
|
-
|
17506
|
-
|
17507
|
-
|
17508
|
-
|
17509
|
-
|
17510
|
-
|
17511
|
-
|
17512
|
-
|
17513
|
-
|
17514
|
-
|
17515
|
-
|
17516
|
-
|
17517
|
-
|
17518
|
-
}
|
17519
|
-
|
17520
|
-
._root_1i908_45 {
|
17521
|
-
background-color: var(--bs-light-bg-subtle);
|
17522
|
-
border-radius: unset;
|
17613
|
+
.ap-player {
|
17614
|
+
--term-color-foreground: #ffffff;
|
17615
|
+
--term-color-background: #000000;
|
17616
|
+
--term-color-0: var(--term-color-foreground);
|
17617
|
+
--term-color-1: var(--term-color-foreground);
|
17618
|
+
--term-color-2: var(--term-color-foreground);
|
17619
|
+
--term-color-3: var(--term-color-foreground);
|
17620
|
+
--term-color-4: var(--term-color-foreground);
|
17621
|
+
--term-color-5: var(--term-color-foreground);
|
17622
|
+
--term-color-6: var(--term-color-foreground);
|
17623
|
+
--term-color-7: var(--term-color-foreground);
|
17624
|
+
--term-color-8: var(--term-color-0);
|
17625
|
+
--term-color-9: var(--term-color-1);
|
17626
|
+
--term-color-10: var(--term-color-2);
|
17627
|
+
--term-color-11: var(--term-color-3);
|
17628
|
+
--term-color-12: var(--term-color-4);
|
17629
|
+
--term-color-13: var(--term-color-5);
|
17630
|
+
--term-color-14: var(--term-color-6);
|
17631
|
+
--term-color-15: var(--term-color-7);
|
17523
17632
|
}
|
17524
|
-
|
17525
|
-
|
17526
|
-
display: block;
|
17527
|
-
position: absolute;
|
17528
|
-
margin: 0 auto;
|
17529
|
-
width: fit-content;
|
17530
|
-
bottom: -10px;
|
17531
|
-
left: 50%;
|
17532
|
-
transform: translateX(-50%);
|
17533
|
-
background-color: var(--bs-body-bg);
|
17534
|
-
border: solid 1px var(--bs-light-border-subtle);
|
17535
|
-
color: var(--bs-secondary);
|
17536
|
-
|
17537
|
-
border-radius: var(--bs-border-radius);
|
17538
|
-
padding: 0em 0.4em;
|
17539
|
-
cursor: pointer;
|
17633
|
+
.ap-player .fg-0 {
|
17634
|
+
--fg: var(--term-color-0);
|
17540
17635
|
}
|
17541
|
-
|
17542
|
-
|
17543
|
-
padding-right: 0.3em;
|
17636
|
+
.ap-player .bg-0 {
|
17637
|
+
--bg: var(--term-color-0);
|
17544
17638
|
}
|
17545
|
-
.
|
17546
|
-
|
17639
|
+
.ap-player .fg-1 {
|
17640
|
+
--fg: var(--term-color-1);
|
17547
17641
|
}
|
17548
|
-
.
|
17549
|
-
|
17550
|
-
display: grid;
|
17551
|
-
grid-template-columns: 1fr max-content;
|
17552
|
-
column-gap: 1em;
|
17642
|
+
.ap-player .bg-1 {
|
17643
|
+
--bg: var(--term-color-1);
|
17553
17644
|
}
|
17554
|
-
|
17555
|
-
|
17556
|
-
padding: 0 !important;
|
17645
|
+
.ap-player .fg-2 {
|
17646
|
+
--fg: var(--term-color-2);
|
17557
17647
|
}
|
17558
|
-
.
|
17559
|
-
|
17648
|
+
.ap-player .bg-2 {
|
17649
|
+
--bg: var(--term-color-2);
|
17560
17650
|
}
|
17561
|
-
|
17562
|
-
|
17563
|
-
font-weight: 600;
|
17564
|
-
padding-bottom: 0.3em;
|
17651
|
+
.ap-player .fg-3 {
|
17652
|
+
--fg: var(--term-color-3);
|
17565
17653
|
}
|
17566
|
-
.
|
17567
|
-
|
17568
|
-
width: 100%;
|
17654
|
+
.ap-player .bg-3 {
|
17655
|
+
--bg: var(--term-color-3);
|
17569
17656
|
}
|
17570
|
-
|
17571
|
-
|
17572
|
-
display: grid;
|
17573
|
-
grid-template-columns: 1fr 1fr 1fr;
|
17574
|
-
column-gap: 1em;
|
17657
|
+
.ap-player .fg-4 {
|
17658
|
+
--fg: var(--term-color-4);
|
17575
17659
|
}
|
17576
|
-
|
17577
|
-
|
17578
|
-
width: fit-content;
|
17579
|
-
align-self: start;
|
17580
|
-
justify-self: start;
|
17660
|
+
.ap-player .bg-4 {
|
17661
|
+
--bg: var(--term-color-4);
|
17581
17662
|
}
|
17582
|
-
|
17583
|
-
|
17584
|
-
grid-column: -1/1;
|
17663
|
+
.ap-player .fg-5 {
|
17664
|
+
--fg: var(--term-color-5);
|
17585
17665
|
}
|
17586
|
-
|
17587
|
-
|
17588
|
-
background: var(--bs-light);
|
17589
|
-
width: 100%;
|
17590
|
-
padding: 0.5em;
|
17591
|
-
border-radius: var(--bs-border-radius);
|
17666
|
+
.ap-player .bg-5 {
|
17667
|
+
--bg: var(--term-color-5);
|
17592
17668
|
}
|
17593
|
-
|
17594
|
-
|
17595
|
-
white-space: pre-wrap !important;
|
17596
|
-
word-wrap: anywhere !important;
|
17669
|
+
.ap-player .fg-6 {
|
17670
|
+
--fg: var(--term-color-6);
|
17597
17671
|
}
|
17598
|
-
|
17599
|
-
|
17600
|
-
margin-left: 0.5em;
|
17672
|
+
.ap-player .bg-6 {
|
17673
|
+
--bg: var(--term-color-6);
|
17601
17674
|
}
|
17602
|
-
|
17603
|
-
|
17604
|
-
display: grid;
|
17605
|
-
grid-template-columns: max-content auto;
|
17606
|
-
column-gap: 1em;
|
17607
|
-
row-gap: 0.5em;
|
17608
|
-
padding-top: 0.5em;
|
17675
|
+
.ap-player .fg-7 {
|
17676
|
+
--fg: var(--term-color-7);
|
17609
17677
|
}
|
17610
|
-
|
17611
|
-
|
17612
|
-
border-top: solid var(--bs-light-border-subtle) 1px;
|
17613
|
-
display: grid;
|
17614
|
-
grid-template-columns: max-content auto;
|
17615
|
-
column-gap: 1em;
|
17616
|
-
margin-top: 0.5em;
|
17617
|
-
padding-top: 0.5em;
|
17678
|
+
.ap-player .bg-7 {
|
17679
|
+
--bg: var(--term-color-7);
|
17618
17680
|
}
|
17619
|
-
.
|
17620
|
-
|
17621
|
-
grid-template-columns: 0 auto auto;
|
17622
|
-
column-gap: 1.5em;
|
17623
|
-
row-gap: 0.2em;
|
17681
|
+
.ap-player .fg-8 {
|
17682
|
+
--fg: var(--term-color-8);
|
17624
17683
|
}
|
17625
|
-
|
17626
|
-
|
17627
|
-
grid-column: 2;
|
17684
|
+
.ap-player .bg-8 {
|
17685
|
+
--bg: var(--term-color-8);
|
17628
17686
|
}
|
17629
|
-
|
17630
|
-
|
17631
|
-
grid-column: 1/3;
|
17687
|
+
.ap-player .fg-9 {
|
17688
|
+
--fg: var(--term-color-9);
|
17632
17689
|
}
|
17633
|
-
|
17634
|
-
|
17635
|
-
grid-column: 3;
|
17690
|
+
.ap-player .bg-9 {
|
17691
|
+
--bg: var(--term-color-9);
|
17636
17692
|
}
|
17637
|
-
|
17638
|
-
|
17639
|
-
grid-column: -1/1;
|
17640
|
-
height: 1px;
|
17641
|
-
background-color: var(--bs-light-border-subtle);
|
17693
|
+
.ap-player .fg-10 {
|
17694
|
+
--fg: var(--term-color-10);
|
17642
17695
|
}
|
17643
|
-
|
17644
|
-
|
17645
|
-
margin-top: 1em;
|
17696
|
+
.ap-player .bg-10 {
|
17697
|
+
--bg: var(--term-color-10);
|
17646
17698
|
}
|
17647
|
-
.
|
17648
|
-
|
17699
|
+
.ap-player .fg-11 {
|
17700
|
+
--fg: var(--term-color-11);
|
17649
17701
|
}
|
17650
|
-
|
17651
|
-
|
17652
|
-
background: var(--bs-light);
|
17653
|
-
border-radius: var(--bs-border-radius);
|
17702
|
+
.ap-player .bg-11 {
|
17703
|
+
--bg: var(--term-color-11);
|
17654
17704
|
}
|
17655
|
-
|
17656
|
-
|
17657
|
-
margin: 1em 0em;
|
17705
|
+
.ap-player .fg-12 {
|
17706
|
+
--fg: var(--term-color-12);
|
17658
17707
|
}
|
17659
|
-
|
17660
|
-
|
17661
|
-
display: flex;
|
17662
|
-
flex-wrap: wrap;
|
17663
|
-
gap: 1em;
|
17664
|
-
overflow-wrap: break-word;
|
17708
|
+
.ap-player .bg-12 {
|
17709
|
+
--bg: var(--term-color-12);
|
17665
17710
|
}
|
17666
|
-
|
17667
|
-
|
17668
|
-
margin: 0.5em 0;
|
17711
|
+
.ap-player .fg-13 {
|
17712
|
+
--fg: var(--term-color-13);
|
17669
17713
|
}
|
17670
|
-
.
|
17671
|
-
|
17714
|
+
.ap-player .bg-13 {
|
17715
|
+
--bg: var(--term-color-13);
|
17672
17716
|
}
|
17673
|
-
|
17674
|
-
|
17675
|
-
margin-bottom: 0;
|
17717
|
+
.ap-player .fg-14 {
|
17718
|
+
--fg: var(--term-color-14);
|
17676
17719
|
}
|
17677
|
-
|
17678
|
-
|
17679
|
-
display: grid;
|
17680
|
-
grid-template-columns: auto 1fr;
|
17681
|
-
column-gap: 1.5em;
|
17720
|
+
.ap-player .bg-14 {
|
17721
|
+
--bg: var(--term-color-14);
|
17682
17722
|
}
|
17683
|
-
|
17684
|
-
|
17685
|
-
margin-top: 0;
|
17723
|
+
.ap-player .fg-15 {
|
17724
|
+
--fg: var(--term-color-15);
|
17686
17725
|
}
|
17687
|
-
|
17688
|
-
|
17689
|
-
margin-top: 0.5em;
|
17726
|
+
.ap-player .bg-15 {
|
17727
|
+
--bg: var(--term-color-15);
|
17690
17728
|
}
|
17691
|
-
|
17692
|
-
.
|
17693
|
-
|
17694
|
-
|
17695
|
-
|
17696
|
-
|
17697
|
-
.
|
17698
|
-
|
17699
|
-
|
17700
|
-
overflow-wrap: break-word;
|
17701
|
-
margin-bottom: 0;
|
17702
|
-
}
|
17703
|
-
._explanation_1ww42_1 {
|
17704
|
-
display: grid;
|
17705
|
-
grid-template-columns: max-content auto;
|
17706
|
-
column-gap: 1em;
|
17707
|
-
margin: 0.5em 0;
|
17708
|
-
}
|
17709
|
-
|
17710
|
-
._separator_1ww42_8 {
|
17711
|
-
grid-column: 1 / -1;
|
17712
|
-
border-bottom: solid 1px var(--bs-light-border-subtle);
|
17713
|
-
}
|
17714
|
-
|
17715
|
-
._metadata_1ww42_13 {
|
17716
|
-
margin: 0.5em 0;
|
17717
|
-
}
|
17718
|
-
div.ap-wrapper {
|
17719
|
-
outline: none;
|
17720
|
-
height: 100%;
|
17721
|
-
display: flex;
|
17722
|
-
justify-content: center;
|
17723
|
-
}
|
17724
|
-
div.ap-wrapper .title-bar {
|
17725
|
-
display: none;
|
17726
|
-
top: -78px;
|
17727
|
-
transition: top 0.15s linear;
|
17728
|
-
position: absolute;
|
17729
|
-
left: 0;
|
17730
|
-
right: 0;
|
17731
|
-
box-sizing: content-box;
|
17732
|
-
font-size: 20px;
|
17733
|
-
line-height: 1em;
|
17734
|
-
padding: 15px;
|
17735
|
-
font-family: sans-serif;
|
17736
|
-
color: white;
|
17737
|
-
background-color: rgba(0, 0, 0, 0.8);
|
17738
|
-
}
|
17739
|
-
div.ap-wrapper .title-bar img {
|
17740
|
-
vertical-align: middle;
|
17741
|
-
height: 48px;
|
17742
|
-
margin-right: 16px;
|
17743
|
-
}
|
17744
|
-
div.ap-wrapper .title-bar a {
|
17745
|
-
color: white;
|
17746
|
-
text-decoration: underline;
|
17747
|
-
}
|
17748
|
-
div.ap-wrapper .title-bar a:hover {
|
17749
|
-
text-decoration: none;
|
17750
|
-
}
|
17751
|
-
div.ap-wrapper:fullscreen {
|
17752
|
-
background-color: #000;
|
17753
|
-
width: 100%;
|
17754
|
-
align-items: center;
|
17755
|
-
}
|
17756
|
-
div.ap-wrapper:fullscreen .title-bar {
|
17757
|
-
display: initial;
|
17758
|
-
}
|
17759
|
-
div.ap-wrapper:fullscreen.hud .title-bar {
|
17760
|
-
top: 0;
|
17761
|
-
}
|
17762
|
-
div.ap-wrapper div.ap-player {
|
17763
|
-
text-align: left;
|
17764
|
-
display: inline-block;
|
17765
|
-
padding: 0px;
|
17766
|
-
position: relative;
|
17767
|
-
box-sizing: content-box;
|
17768
|
-
overflow: hidden;
|
17769
|
-
max-width: 100%;
|
17770
|
-
border-radius: 4px;
|
17771
|
-
font-size: 15px;
|
17772
|
-
background-color: var(--term-color-background);
|
17773
|
-
}
|
17774
|
-
.ap-player {
|
17775
|
-
--term-color-foreground: #ffffff;
|
17776
|
-
--term-color-background: #000000;
|
17777
|
-
--term-color-0: var(--term-color-foreground);
|
17778
|
-
--term-color-1: var(--term-color-foreground);
|
17779
|
-
--term-color-2: var(--term-color-foreground);
|
17780
|
-
--term-color-3: var(--term-color-foreground);
|
17781
|
-
--term-color-4: var(--term-color-foreground);
|
17782
|
-
--term-color-5: var(--term-color-foreground);
|
17783
|
-
--term-color-6: var(--term-color-foreground);
|
17784
|
-
--term-color-7: var(--term-color-foreground);
|
17785
|
-
--term-color-8: var(--term-color-0);
|
17786
|
-
--term-color-9: var(--term-color-1);
|
17787
|
-
--term-color-10: var(--term-color-2);
|
17788
|
-
--term-color-11: var(--term-color-3);
|
17789
|
-
--term-color-12: var(--term-color-4);
|
17790
|
-
--term-color-13: var(--term-color-5);
|
17791
|
-
--term-color-14: var(--term-color-6);
|
17792
|
-
--term-color-15: var(--term-color-7);
|
17793
|
-
}
|
17794
|
-
.ap-player .fg-0 {
|
17795
|
-
--fg: var(--term-color-0);
|
17796
|
-
}
|
17797
|
-
.ap-player .bg-0 {
|
17798
|
-
--bg: var(--term-color-0);
|
17799
|
-
}
|
17800
|
-
.ap-player .fg-1 {
|
17801
|
-
--fg: var(--term-color-1);
|
17802
|
-
}
|
17803
|
-
.ap-player .bg-1 {
|
17804
|
-
--bg: var(--term-color-1);
|
17805
|
-
}
|
17806
|
-
.ap-player .fg-2 {
|
17807
|
-
--fg: var(--term-color-2);
|
17808
|
-
}
|
17809
|
-
.ap-player .bg-2 {
|
17810
|
-
--bg: var(--term-color-2);
|
17811
|
-
}
|
17812
|
-
.ap-player .fg-3 {
|
17813
|
-
--fg: var(--term-color-3);
|
17814
|
-
}
|
17815
|
-
.ap-player .bg-3 {
|
17816
|
-
--bg: var(--term-color-3);
|
17817
|
-
}
|
17818
|
-
.ap-player .fg-4 {
|
17819
|
-
--fg: var(--term-color-4);
|
17820
|
-
}
|
17821
|
-
.ap-player .bg-4 {
|
17822
|
-
--bg: var(--term-color-4);
|
17823
|
-
}
|
17824
|
-
.ap-player .fg-5 {
|
17825
|
-
--fg: var(--term-color-5);
|
17826
|
-
}
|
17827
|
-
.ap-player .bg-5 {
|
17828
|
-
--bg: var(--term-color-5);
|
17829
|
-
}
|
17830
|
-
.ap-player .fg-6 {
|
17831
|
-
--fg: var(--term-color-6);
|
17832
|
-
}
|
17833
|
-
.ap-player .bg-6 {
|
17834
|
-
--bg: var(--term-color-6);
|
17835
|
-
}
|
17836
|
-
.ap-player .fg-7 {
|
17837
|
-
--fg: var(--term-color-7);
|
17838
|
-
}
|
17839
|
-
.ap-player .bg-7 {
|
17840
|
-
--bg: var(--term-color-7);
|
17841
|
-
}
|
17842
|
-
.ap-player .fg-8 {
|
17843
|
-
--fg: var(--term-color-8);
|
17844
|
-
}
|
17845
|
-
.ap-player .bg-8 {
|
17846
|
-
--bg: var(--term-color-8);
|
17847
|
-
}
|
17848
|
-
.ap-player .fg-9 {
|
17849
|
-
--fg: var(--term-color-9);
|
17850
|
-
}
|
17851
|
-
.ap-player .bg-9 {
|
17852
|
-
--bg: var(--term-color-9);
|
17853
|
-
}
|
17854
|
-
.ap-player .fg-10 {
|
17855
|
-
--fg: var(--term-color-10);
|
17856
|
-
}
|
17857
|
-
.ap-player .bg-10 {
|
17858
|
-
--bg: var(--term-color-10);
|
17859
|
-
}
|
17860
|
-
.ap-player .fg-11 {
|
17861
|
-
--fg: var(--term-color-11);
|
17862
|
-
}
|
17863
|
-
.ap-player .bg-11 {
|
17864
|
-
--bg: var(--term-color-11);
|
17865
|
-
}
|
17866
|
-
.ap-player .fg-12 {
|
17867
|
-
--fg: var(--term-color-12);
|
17868
|
-
}
|
17869
|
-
.ap-player .bg-12 {
|
17870
|
-
--bg: var(--term-color-12);
|
17871
|
-
}
|
17872
|
-
.ap-player .fg-13 {
|
17873
|
-
--fg: var(--term-color-13);
|
17874
|
-
}
|
17875
|
-
.ap-player .bg-13 {
|
17876
|
-
--bg: var(--term-color-13);
|
17877
|
-
}
|
17878
|
-
.ap-player .fg-14 {
|
17879
|
-
--fg: var(--term-color-14);
|
17880
|
-
}
|
17881
|
-
.ap-player .bg-14 {
|
17882
|
-
--bg: var(--term-color-14);
|
17883
|
-
}
|
17884
|
-
.ap-player .fg-15 {
|
17885
|
-
--fg: var(--term-color-15);
|
17886
|
-
}
|
17887
|
-
.ap-player .bg-15 {
|
17888
|
-
--bg: var(--term-color-15);
|
17889
|
-
}
|
17890
|
-
.ap-player .fg-8,
|
17891
|
-
.ap-player .fg-9,
|
17892
|
-
.ap-player .fg-10,
|
17893
|
-
.ap-player .fg-11,
|
17894
|
-
.ap-player .fg-12,
|
17895
|
-
.ap-player .fg-13,
|
17896
|
-
.ap-player .fg-14,
|
17897
|
-
.ap-player .fg-15 {
|
17898
|
-
font-weight: bold;
|
17729
|
+
.ap-player .fg-8,
|
17730
|
+
.ap-player .fg-9,
|
17731
|
+
.ap-player .fg-10,
|
17732
|
+
.ap-player .fg-11,
|
17733
|
+
.ap-player .fg-12,
|
17734
|
+
.ap-player .fg-13,
|
17735
|
+
.ap-player .fg-14,
|
17736
|
+
.ap-player .fg-15 {
|
17737
|
+
font-weight: bold;
|
17899
17738
|
}
|
17900
17739
|
pre.ap-terminal {
|
17901
17740
|
box-sizing: content-box;
|
@@ -18168,7 +18007,7 @@ div.ap-player div.ap-control-bar {
|
|
18168
18007
|
opacity: 0;
|
18169
18008
|
transition: opacity 0.15s linear;
|
18170
18009
|
user-select: none;
|
18171
|
-
border-top: 2px solid color-mix(in oklab,
|
18010
|
+
border-top: 2px solid color-mix(in oklab, var(--term-color-background) 80%, var(--term-color-foreground));
|
18172
18011
|
z-index: 30;
|
18173
18012
|
}
|
18174
18013
|
div.ap-player div.ap-control-bar * {
|
@@ -18428,8 +18267,6 @@ span.ap-marker-container:hover span.ap-marker {
|
|
18428
18267
|
max-height: 85%;
|
18429
18268
|
font-size: 18px;
|
18430
18269
|
color: var(--term-color-foreground);
|
18431
|
-
background-color: var(--term-color-background);
|
18432
|
-
border-radius: 6px;
|
18433
18270
|
box-sizing: border-box;
|
18434
18271
|
margin-bottom: 32px;
|
18435
18272
|
}
|
@@ -18445,6 +18282,9 @@ span.ap-marker-container:hover span.ap-marker {
|
|
18445
18282
|
.ap-player .ap-overlay-help > div div {
|
18446
18283
|
padding: calc(min(4cqw, 40px));
|
18447
18284
|
font-size: calc(min(1.9cqw, 18px));
|
18285
|
+
background-color: var(--term-color-background);
|
18286
|
+
border: 1px solid color-mix(in oklab, var(--term-color-background) 90%, var(--term-color-foreground));
|
18287
|
+
border-radius: 6px;
|
18448
18288
|
}
|
18449
18289
|
.ap-player .ap-overlay-help > div div p {
|
18450
18290
|
font-weight: bold;
|
@@ -20051,519 +19891,951 @@ span.ap-marker-container:hover span.ap-marker {
|
|
20051
19891
|
--term-color-14: #93a1a1;
|
20052
19892
|
--term-color-15: #fdf6e3;
|
20053
19893
|
}
|
20054
|
-
.asciinema-player-theme-solarized-light .ap-overlay-start .ap-play-button svg .ap-play-btn-fill {
|
20055
|
-
fill: var(--term-color-1);
|
19894
|
+
.asciinema-player-theme-solarized-light .ap-overlay-start .ap-play-button svg .ap-play-btn-fill {
|
19895
|
+
fill: var(--term-color-1);
|
19896
|
+
}
|
19897
|
+
.asciinema-player-theme-solarized-light .ap-overlay-start .ap-play-button svg .ap-play-btn-stroke {
|
19898
|
+
stroke: var(--term-color-1);
|
19899
|
+
}
|
19900
|
+
/*
|
19901
|
+
Based on Tango: https://en.wikipedia.org/wiki/Tango_Desktop_Project
|
19902
|
+
*/
|
19903
|
+
.asciinema-player-theme-tango {
|
19904
|
+
--term-color-foreground: #cccccc;
|
19905
|
+
--term-color-background: #121314;
|
19906
|
+
--term-color-0: #000000;
|
19907
|
+
--term-color-1: #cc0000;
|
19908
|
+
--term-color-2: #4e9a06;
|
19909
|
+
--term-color-3: #c4a000;
|
19910
|
+
--term-color-4: #3465a4;
|
19911
|
+
--term-color-5: #75507b;
|
19912
|
+
--term-color-6: #06989a;
|
19913
|
+
--term-color-7: #d3d7cf;
|
19914
|
+
--term-color-8: #555753;
|
19915
|
+
--term-color-9: #ef2929;
|
19916
|
+
--term-color-10: #8ae234;
|
19917
|
+
--term-color-11: #fce94f;
|
19918
|
+
--term-color-12: #729fcf;
|
19919
|
+
--term-color-13: #ad7fa8;
|
19920
|
+
--term-color-14: #34e2e2;
|
19921
|
+
--term-color-15: #eeeeec;
|
19922
|
+
}
|
19923
|
+
/*
|
19924
|
+
Based on gruvbox: https://github.com/morhetz/gruvbox
|
19925
|
+
*/
|
19926
|
+
.asciinema-player-theme-gruvbox-dark {
|
19927
|
+
--term-color-foreground: #fbf1c7;
|
19928
|
+
--term-color-background: #282828;
|
19929
|
+
--term-color-0: #282828;
|
19930
|
+
--term-color-1: #cc241d;
|
19931
|
+
--term-color-2: #98971a;
|
19932
|
+
--term-color-3: #d79921;
|
19933
|
+
--term-color-4: #458588;
|
19934
|
+
--term-color-5: #b16286;
|
19935
|
+
--term-color-6: #689d6a;
|
19936
|
+
--term-color-7: #a89984;
|
19937
|
+
--term-color-8: #7c6f65;
|
19938
|
+
--term-color-9: #fb4934;
|
19939
|
+
--term-color-10: #b8bb26;
|
19940
|
+
--term-color-11: #fabd2f;
|
19941
|
+
--term-color-12: #83a598;
|
19942
|
+
--term-color-13: #d3869b;
|
19943
|
+
--term-color-14: #8ec07c;
|
19944
|
+
--term-color-15: #fbf1c7;
|
19945
|
+
}
|
19946
|
+
.asciinema-player {
|
19947
|
+
max-height: 100vh;
|
19948
|
+
max-width: 100vw;
|
19949
|
+
}
|
19950
|
+
|
19951
|
+
.asciinema-player-status {
|
19952
|
+
margin-right: 0.5em;
|
19953
|
+
}
|
19954
|
+
|
19955
|
+
.asciinema-wrapper {
|
19956
|
+
display: flex;
|
19957
|
+
justify-content: center;
|
19958
|
+
}
|
19959
|
+
|
19960
|
+
.asciinema-container {
|
19961
|
+
display: grid;
|
19962
|
+
grid-template-columns: 1fr 1fr 1fr;
|
19963
|
+
grid-template-rows: auto auto;
|
19964
|
+
width: 100%;
|
19965
|
+
}
|
19966
|
+
|
19967
|
+
.asciinema-header-left {
|
19968
|
+
justify-self: start;
|
19969
|
+
font-size: var(--inspect-font-size-small);
|
19970
|
+
}
|
19971
|
+
|
19972
|
+
.asciinema-header-center {
|
19973
|
+
justify-self: center;
|
19974
|
+
font-size: var(--inspect-font-size-small);
|
19975
|
+
}
|
19976
|
+
|
19977
|
+
.asciinema-header-right {
|
19978
|
+
justify-self: start;
|
19979
|
+
font-size: var(--inspect-font-size-small);
|
19980
|
+
}
|
19981
|
+
|
19982
|
+
.asciinema-body {
|
19983
|
+
border-top: 1px solid var(--bs-light-border-subtle);
|
19984
|
+
grid-column: span 3;
|
19985
|
+
width: 100%;
|
19986
|
+
}
|
19987
|
+
._carouselThumbs_1mvg8_1 {
|
19988
|
+
display: grid;
|
19989
|
+
grid-template-columns: auto auto auto auto;
|
19990
|
+
}
|
19991
|
+
|
19992
|
+
._carouselThumb_1mvg8_1 {
|
19993
|
+
background: black;
|
19994
|
+
color: white;
|
19995
|
+
padding: 4em 0;
|
19996
|
+
border: 0;
|
19997
|
+
margin: 5px;
|
19998
|
+
cursor: pointer;
|
19999
|
+
text-align: center;
|
20000
|
+
}
|
20001
|
+
|
20002
|
+
._carouselPlayIcon_1mvg8_16 {
|
20003
|
+
font-size: 4em;
|
20004
|
+
}
|
20005
|
+
|
20006
|
+
._lightboxOverlay_1mvg8_20 {
|
20007
|
+
position: fixed;
|
20008
|
+
top: 0;
|
20009
|
+
left: 0;
|
20010
|
+
width: 100vw;
|
20011
|
+
height: 100vh;
|
20012
|
+
background: rgba(0, 0, 0, 0.8);
|
20013
|
+
display: flex;
|
20014
|
+
align-items: center;
|
20015
|
+
justify-content: center;
|
20016
|
+
z-index: 9998;
|
20017
|
+
}
|
20018
|
+
|
20019
|
+
._lightboxContent_1mvg8_33._open_1mvg8_33,
|
20020
|
+
._lightboxOverlay_1mvg8_20._open_1mvg8_33 {
|
20021
|
+
opacity: 1;
|
20022
|
+
visibility: visible;
|
20023
|
+
}
|
20024
|
+
|
20025
|
+
._lightboxContent_1mvg8_33._closed_1mvg8_39,
|
20026
|
+
._lightboxOverlay_1mvg8_20._closed_1mvg8_39 {
|
20027
|
+
opacity: 0;
|
20028
|
+
visibility: hidden;
|
20029
|
+
}
|
20030
|
+
|
20031
|
+
._lightboxButtonCloseWrapper_1mvg8_45 {
|
20032
|
+
position: absolute;
|
20033
|
+
top: 10px;
|
20034
|
+
right: 10px;
|
20035
|
+
}
|
20036
|
+
|
20037
|
+
._lightboxButtonClose_1mvg8_45 {
|
20038
|
+
border: none;
|
20039
|
+
background: none;
|
20040
|
+
color: #fff;
|
20041
|
+
font-size: 3em;
|
20042
|
+
font-weight: 500;
|
20043
|
+
cursor: pointer;
|
20044
|
+
padding-left: 1em;
|
20045
|
+
padding-bottom: 1em;
|
20046
|
+
z-index: 10000;
|
20047
|
+
}
|
20048
|
+
|
20049
|
+
._lightboxPreviewButton_1mvg8_63 {
|
20050
|
+
position: absolute;
|
20051
|
+
top: 50%;
|
20052
|
+
transform: translateY(-50%);
|
20053
|
+
background: none;
|
20054
|
+
color: #fff;
|
20055
|
+
border: none;
|
20056
|
+
padding: 0.5em;
|
20057
|
+
font-size: 3em;
|
20058
|
+
cursor: pointer;
|
20059
|
+
z-index: 9999;
|
20060
|
+
}
|
20061
|
+
|
20062
|
+
._lightboxPreviewButton_1mvg8_63._next_1mvg8_76 {
|
20063
|
+
left: 10px;
|
20064
|
+
}
|
20065
|
+
|
20066
|
+
._lightboxPreviewButton_1mvg8_63._prev_1mvg8_80 {
|
20067
|
+
right: 10px;
|
20068
|
+
}
|
20069
|
+
|
20070
|
+
._lightboxContent_1mvg8_33 {
|
20071
|
+
max-width: 90vw !important;
|
20072
|
+
max-height: 90vh !important;
|
20073
|
+
display: flex;
|
20074
|
+
position: relative;
|
20075
|
+
transition:
|
20076
|
+
opacity 0.3s ease,
|
20077
|
+
visibility 0.3s ease;
|
20078
|
+
z-index: 9999;
|
20079
|
+
overflow: hidden;
|
20080
|
+
}
|
20081
|
+
|
20082
|
+
._lightboxContent_1mvg8_33 > * {
|
20083
|
+
max-height: 90vh !important;
|
20084
|
+
max-width: 90vw !important;
|
20085
|
+
}
|
20086
|
+
._toolsGrid_1qqm2_1 {
|
20087
|
+
display: grid;
|
20088
|
+
row-gap: 0em;
|
20089
|
+
}
|
20090
|
+
|
20091
|
+
._tools_1qqm2_1 {
|
20092
|
+
display: grid;
|
20093
|
+
grid-template-columns: max-content max-content;
|
20094
|
+
column-gap: 1rem;
|
20095
|
+
margin: 0;
|
20096
|
+
align-items: baseline;
|
20097
|
+
}
|
20098
|
+
|
20099
|
+
._tool_1qqm2_1 {
|
20100
|
+
padding: 0;
|
20101
|
+
color: inherit !important;
|
20102
|
+
}
|
20103
|
+
._diff_eobja_1 {
|
20104
|
+
margin: 1em 0em;
|
20105
|
+
width: 100%;
|
20106
|
+
}
|
20107
|
+
|
20108
|
+
._summary_eobja_6 {
|
20109
|
+
margin: 1em 0em;
|
20110
|
+
width: 100%;
|
20111
|
+
}
|
20112
|
+
._summary_ac4z2_1 {
|
20113
|
+
width: 100%;
|
20114
|
+
margin: 0.5em 0em;
|
20115
|
+
}
|
20116
|
+
|
20117
|
+
._summaryRendered_ac4z2_6 {
|
20118
|
+
margin-bottom: 1em;
|
20119
|
+
}
|
20120
|
+
|
20121
|
+
._subtaskSummary_ac4z2_10 {
|
20122
|
+
display: grid;
|
20123
|
+
grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr);
|
20124
|
+
column-gap: 1em;
|
20125
|
+
margin: 0.5em 0;
|
20126
|
+
}
|
20127
|
+
|
20128
|
+
._subtaskLabel_ac4z2_17 {
|
20129
|
+
padding: 0 2em;
|
20130
|
+
}
|
20131
|
+
._summary_1qsnv_1 {
|
20132
|
+
margin: 0.5em 0;
|
20133
|
+
width: 100%;
|
20134
|
+
}
|
20135
|
+
|
20136
|
+
._approval_1qsnv_6 {
|
20137
|
+
border: none;
|
20138
|
+
padding: 0;
|
20139
|
+
margin-bottom: 0;
|
20140
|
+
}
|
20141
|
+
|
20142
|
+
._progress_1qsnv_12 {
|
20143
|
+
margin-left: 0.5em;
|
20144
|
+
}
|
20145
|
+
._node_1r858_1 {
|
20146
|
+
padding-top: 0.8rem;
|
20147
|
+
}
|
20148
|
+
|
20149
|
+
._attached_1r858_5 {
|
20150
|
+
padding-top: 0rem;
|
20151
|
+
}
|
20152
|
+
|
20153
|
+
._attachedParent_1r858_9 {
|
20154
|
+
padding-bottom: 0px;
|
20155
|
+
border-bottom-left-radius: 0;
|
20156
|
+
border-bottom-right-radius: 0;
|
20157
|
+
border-bottom: none;
|
20158
|
+
}
|
20159
|
+
|
20160
|
+
._attachedChild_1r858_16 {
|
20161
|
+
border-top-left-radius: 0;
|
20162
|
+
border-top-right-radius: 0;
|
20163
|
+
}
|
20164
|
+
._container_ly812_1 {
|
20165
|
+
width: 100%;
|
20166
|
+
display: flex;
|
20167
|
+
flex-direction: column;
|
20168
|
+
}
|
20169
|
+
|
20170
|
+
._scroller_ly812_7 {
|
20171
|
+
overflow-y: auto;
|
20172
|
+
width: 100%;
|
20173
|
+
height: 100%;
|
20174
|
+
position: relative;
|
20175
|
+
}
|
20176
|
+
._title_yj2nt_1 {
|
20177
|
+
flex: 1 1 auto;
|
20178
|
+
}
|
20179
|
+
|
20180
|
+
._detail_yj2nt_5 {
|
20181
|
+
margin-left: auto;
|
20182
|
+
margin-right: auto;
|
20183
|
+
display: flex;
|
20184
|
+
flex: 1 1 auto;
|
20185
|
+
justify-content: center;
|
20186
|
+
}
|
20187
|
+
|
20188
|
+
._detailText_yj2nt_13 {
|
20189
|
+
display: flex;
|
20190
|
+
align-items: center;
|
20191
|
+
}
|
20192
|
+
|
20193
|
+
._close_yj2nt_18 {
|
20194
|
+
border-width: 0px;
|
20195
|
+
font-weight: 300;
|
20196
|
+
padding: 0em 0.5em;
|
20197
|
+
flex: 1;
|
20198
|
+
text-align: right;
|
20199
|
+
}
|
20200
|
+
|
20201
|
+
._modal_yj2nt_26 {
|
20202
|
+
border-radius: var(--bs-border-radius);
|
20203
|
+
display: block;
|
20204
|
+
}
|
20205
|
+
|
20206
|
+
._hidden_yj2nt_31 {
|
20207
|
+
display: none;
|
20208
|
+
}
|
20209
|
+
|
20210
|
+
._modalBody_yj2nt_35 {
|
20211
|
+
max-width: 100%;
|
20212
|
+
margin-left: var(--bs-modal-margin);
|
20213
|
+
margin-right: var(--bs-modal-margin);
|
20214
|
+
}
|
20215
|
+
|
20216
|
+
._content_yj2nt_41 {
|
20217
|
+
height: 100%;
|
20218
|
+
}
|
20219
|
+
|
20220
|
+
._header_yj2nt_45 {
|
20221
|
+
padding: 0 0 0 1em;
|
20222
|
+
display: flex;
|
20223
|
+
}
|
20224
|
+
|
20225
|
+
._titleTool_yj2nt_50 {
|
20226
|
+
padding-top: 0;
|
20227
|
+
padding-bottom: 0;
|
20228
|
+
border: none;
|
20229
|
+
}
|
20230
|
+
._modalBody_ozq2k_1 {
|
20231
|
+
padding: 0 0;
|
20056
20232
|
}
|
20057
|
-
.
|
20058
|
-
|
20233
|
+
._container_15b4r_1 {
|
20234
|
+
display: flex;
|
20059
20235
|
}
|
20060
|
-
|
20061
|
-
|
20062
|
-
|
20063
|
-
|
20064
|
-
|
20065
|
-
--term-color-background: #121314;
|
20066
|
-
--term-color-0: #000000;
|
20067
|
-
--term-color-1: #cc0000;
|
20068
|
-
--term-color-2: #4e9a06;
|
20069
|
-
--term-color-3: #c4a000;
|
20070
|
-
--term-color-4: #3465a4;
|
20071
|
-
--term-color-5: #75507b;
|
20072
|
-
--term-color-6: #06989a;
|
20073
|
-
--term-color-7: #d3d7cf;
|
20074
|
-
--term-color-8: #555753;
|
20075
|
-
--term-color-9: #ef2929;
|
20076
|
-
--term-color-10: #8ae234;
|
20077
|
-
--term-color-11: #fce94f;
|
20078
|
-
--term-color-12: #729fcf;
|
20079
|
-
--term-color-13: #ad7fa8;
|
20080
|
-
--term-color-14: #34e2e2;
|
20081
|
-
--term-color-15: #eeeeec;
|
20236
|
+
|
20237
|
+
._label_15b4r_5 {
|
20238
|
+
align-self: center;
|
20239
|
+
margin-right: 0.3em;
|
20240
|
+
margin-left: 0.2em;
|
20082
20241
|
}
|
20083
|
-
.
|
20084
|
-
|
20085
|
-
|
20242
|
+
._label_jbrqc_1 {
|
20243
|
+
align-self: center;
|
20244
|
+
margin-right: 0.3em;
|
20245
|
+
margin-left: 0.2em;
|
20086
20246
|
}
|
20087
20247
|
|
20088
|
-
.
|
20089
|
-
|
20248
|
+
._input_jbrqc_7 {
|
20249
|
+
width: 300px;
|
20090
20250
|
}
|
20091
20251
|
|
20092
|
-
.
|
20252
|
+
._help_jbrqc_11 {
|
20253
|
+
position: relative;
|
20254
|
+
margin-left: 0.5em;
|
20255
|
+
cursor: help;
|
20256
|
+
align-self: center;
|
20257
|
+
}
|
20258
|
+
._flex_anstf_1 {
|
20093
20259
|
display: flex;
|
20094
|
-
justify-content: center;
|
20095
20260
|
}
|
20096
20261
|
|
20097
|
-
.
|
20098
|
-
|
20099
|
-
grid-template-columns: 1fr 1fr 1fr;
|
20100
|
-
grid-template-rows: auto auto;
|
20101
|
-
width: 100%;
|
20262
|
+
._label_anstf_5 {
|
20263
|
+
align-self: center;
|
20102
20264
|
}
|
20103
20265
|
|
20104
|
-
.
|
20105
|
-
|
20106
|
-
font-size: var(--inspect-font-size-small);
|
20266
|
+
._secondSel_anstf_9 {
|
20267
|
+
margin-left: 1em;
|
20107
20268
|
}
|
20108
20269
|
|
20109
|
-
.
|
20110
|
-
|
20111
|
-
|
20270
|
+
._secondLabel_anstf_13 {
|
20271
|
+
margin-right: 0.3em;
|
20272
|
+
margin-left: 0.2em;
|
20273
|
+
}
|
20274
|
+
._body_12gn4_1 {
|
20275
|
+
color: var(--bs-danger);
|
20276
|
+
display: grid;
|
20277
|
+
grid-template-columns: 1fr;
|
20278
|
+
align-content: baseline;
|
20279
|
+
justify-items: center;
|
20112
20280
|
}
|
20113
20281
|
|
20114
|
-
.
|
20115
|
-
justify-self: start;
|
20282
|
+
._iconSmall_12gn4_9 {
|
20116
20283
|
font-size: var(--inspect-font-size-small);
|
20284
|
+
line-height: var(--inspect-font-size-small);
|
20285
|
+
height: var(--inspect-font-size-small);
|
20117
20286
|
}
|
20118
20287
|
|
20119
|
-
.
|
20120
|
-
|
20121
|
-
|
20122
|
-
width: 100%;
|
20288
|
+
._message_12gn4_15 {
|
20289
|
+
text-align: center;
|
20290
|
+
width: 300px;
|
20123
20291
|
}
|
20124
|
-
.
|
20292
|
+
._grid_185sx_1 {
|
20125
20293
|
display: grid;
|
20126
|
-
|
20127
|
-
|
20128
|
-
|
20129
|
-
._carouselThumb_1mvg8_1 {
|
20130
|
-
background: black;
|
20131
|
-
color: white;
|
20132
|
-
padding: 4em 0;
|
20133
|
-
border: 0;
|
20134
|
-
margin: 5px;
|
20294
|
+
padding-top: 1em;
|
20295
|
+
padding-bottom: 1em;
|
20296
|
+
border-bottom: solid var(--bs-border-color) 1px;
|
20135
20297
|
cursor: pointer;
|
20136
|
-
|
20298
|
+
overflow-y: hidden;
|
20299
|
+
grid-gap: 10px;
|
20300
|
+
padding-left: 1rem;
|
20301
|
+
padding-right: 1rem;
|
20137
20302
|
}
|
20138
20303
|
|
20139
|
-
.
|
20140
|
-
|
20304
|
+
._selected_185sx_13 {
|
20305
|
+
box-shadow: inset 0 0 0px 2px var(--bs-focus-ring-color);
|
20141
20306
|
}
|
20142
20307
|
|
20143
|
-
.
|
20144
|
-
|
20145
|
-
|
20146
|
-
|
20147
|
-
width: 100vw;
|
20148
|
-
height: 100vh;
|
20149
|
-
background: rgba(0, 0, 0, 0.8);
|
20150
|
-
display: flex;
|
20151
|
-
align-items: center;
|
20152
|
-
justify-content: center;
|
20153
|
-
z-index: 9998;
|
20308
|
+
._sampleRowLink_185sx_17 {
|
20309
|
+
text-decoration: none;
|
20310
|
+
color: inherit;
|
20311
|
+
display: block;
|
20154
20312
|
}
|
20155
20313
|
|
20156
|
-
.
|
20157
|
-
|
20158
|
-
opacity:
|
20159
|
-
visibility: visible;
|
20314
|
+
._disabled_185sx_23 {
|
20315
|
+
cursor: not-allowed;
|
20316
|
+
opacity: 0.7;
|
20160
20317
|
}
|
20161
20318
|
|
20162
|
-
.
|
20163
|
-
|
20164
|
-
|
20165
|
-
visibility: hidden;
|
20319
|
+
._cell_185sx_28 {
|
20320
|
+
padding-left: 0;
|
20321
|
+
padding-right: 0;
|
20166
20322
|
}
|
20167
20323
|
|
20168
|
-
.
|
20169
|
-
|
20170
|
-
top: 10px;
|
20171
|
-
right: 10px;
|
20324
|
+
._wrapAnywhere_185sx_33 {
|
20325
|
+
word-wrap: anywhere;
|
20172
20326
|
}
|
20173
20327
|
|
20174
|
-
.
|
20175
|
-
|
20176
|
-
background: none;
|
20177
|
-
color: #fff;
|
20178
|
-
font-size: 3em;
|
20179
|
-
font-weight: 500;
|
20180
|
-
cursor: pointer;
|
20181
|
-
padding-left: 1em;
|
20182
|
-
padding-bottom: 1em;
|
20183
|
-
z-index: 10000;
|
20328
|
+
._noLeft_185sx_37 {
|
20329
|
+
padding-left: 0;
|
20184
20330
|
}
|
20185
20331
|
|
20186
|
-
.
|
20187
|
-
|
20188
|
-
|
20189
|
-
transform: translateY(-50%);
|
20190
|
-
background: none;
|
20191
|
-
color: #fff;
|
20192
|
-
border: none;
|
20193
|
-
padding: 0.5em;
|
20194
|
-
font-size: 3em;
|
20195
|
-
cursor: pointer;
|
20196
|
-
z-index: 9999;
|
20332
|
+
._score_185sx_41 {
|
20333
|
+
display: flex;
|
20334
|
+
justify-self: center;
|
20197
20335
|
}
|
20198
20336
|
|
20199
|
-
.
|
20200
|
-
|
20337
|
+
._centered_185sx_46 {
|
20338
|
+
display: flex;
|
20339
|
+
justify-content: center;
|
20201
20340
|
}
|
20202
20341
|
|
20203
|
-
.
|
20204
|
-
|
20342
|
+
._spinner_185sx_51 {
|
20343
|
+
height: 1.4em;
|
20344
|
+
width: 1.4em;
|
20345
|
+
color: var(--bs-focus-ring-color);
|
20205
20346
|
}
|
20206
|
-
|
20207
|
-
.
|
20208
|
-
|
20209
|
-
|
20210
|
-
|
20211
|
-
position: relative;
|
20212
|
-
transition:
|
20213
|
-
opacity 0.3s ease,
|
20214
|
-
visibility 0.3s ease;
|
20215
|
-
z-index: 9999;
|
20216
|
-
overflow: hidden;
|
20347
|
+
._row_utdq5_1 {
|
20348
|
+
padding: 0.25em 1em 0.25em 1em;
|
20349
|
+
text-transform: uppercase;
|
20350
|
+
font-weight: 600;
|
20351
|
+
border-bottom: solid 1px var(--bs-border-color);
|
20217
20352
|
}
|
20353
|
+
._footer_vkofn_1 {
|
20354
|
+
border-top: solid var(--bs-light-border-subtle) 1px;
|
20355
|
+
background: var(--bs-light-bg-subtle);
|
20356
|
+
display: grid;
|
20357
|
+
grid-template-columns: max-content max-content;
|
20358
|
+
justify-content: space-between;
|
20218
20359
|
|
20219
|
-
.
|
20220
|
-
max-height: 90vh !important;
|
20221
|
-
max-width: 90vw !important;
|
20360
|
+
padding: 0.2em 1em;
|
20222
20361
|
}
|
20223
|
-
|
20362
|
+
|
20363
|
+
._spinnerContainer_vkofn_11 {
|
20224
20364
|
display: grid;
|
20225
|
-
|
20365
|
+
grid-template-columns: max-content max-content;
|
20366
|
+
column-gap: 0.3em;
|
20367
|
+
padding-top: 0.2em;
|
20226
20368
|
}
|
20227
20369
|
|
20228
|
-
.
|
20370
|
+
._spinner_vkofn_11 {
|
20371
|
+
height: 11px;
|
20372
|
+
width: 11px;
|
20373
|
+
color: var(--bs-secondary);
|
20374
|
+
border-width: 1px;
|
20375
|
+
}
|
20376
|
+
|
20377
|
+
._label_vkofn_25 {
|
20378
|
+
margin-left: 0.1em;
|
20379
|
+
margin-top: -3px;
|
20380
|
+
}
|
20381
|
+
._header_16ngy_1 {
|
20229
20382
|
display: grid;
|
20230
|
-
|
20231
|
-
|
20232
|
-
|
20233
|
-
|
20383
|
+
padding-bottom: 0.3em;
|
20384
|
+
padding-top: 0.3em;
|
20385
|
+
border-bottom: solid var(--bs-light-border-subtle) 1px;
|
20386
|
+
grid-gap: 10px;
|
20387
|
+
padding-left: 1rem;
|
20388
|
+
padding-right: 1rem;
|
20234
20389
|
}
|
20235
20390
|
|
20236
|
-
.
|
20237
|
-
|
20238
|
-
color: inherit !important;
|
20391
|
+
._center_16ngy_11 {
|
20392
|
+
justify-self: center;
|
20239
20393
|
}
|
20240
|
-
.
|
20241
|
-
|
20242
|
-
|
20394
|
+
._list_q79zq_1 {
|
20395
|
+
flex: 1;
|
20396
|
+
overflow-y: auto;
|
20397
|
+
outline: none;
|
20243
20398
|
}
|
20244
20399
|
|
20245
|
-
.
|
20246
|
-
|
20400
|
+
._mainLayout_q79zq_7 {
|
20401
|
+
display: flex;
|
20402
|
+
flex-direction: column;
|
20247
20403
|
width: 100%;
|
20248
20404
|
}
|
20249
|
-
.
|
20405
|
+
._panel_1yknn_1 {
|
20250
20406
|
width: 100%;
|
20251
|
-
|
20407
|
+
display: flex;
|
20408
|
+
justify-content: center;
|
20252
20409
|
}
|
20253
20410
|
|
20254
|
-
.
|
20255
|
-
margin-
|
20411
|
+
._container_1yknn_7 {
|
20412
|
+
margin-top: 3em;
|
20413
|
+
display: grid;
|
20414
|
+
grid-template-columns: max-content max-content;
|
20415
|
+
column-gap: 0.3em;
|
20256
20416
|
}
|
20257
20417
|
|
20258
|
-
.
|
20418
|
+
._spinner_1yknn_14 {
|
20419
|
+
border-width: 1px;
|
20420
|
+
height: 15px;
|
20421
|
+
width: 15px;
|
20422
|
+
}
|
20423
|
+
|
20424
|
+
._text_1yknn_20 {
|
20425
|
+
margin-top: -2px;
|
20426
|
+
}
|
20427
|
+
._grid_er9fb_1 {
|
20259
20428
|
display: grid;
|
20260
|
-
grid-template-columns:
|
20261
|
-
column-gap:
|
20262
|
-
|
20429
|
+
grid-template-columns: fit-content(50%) fit-content(50%);
|
20430
|
+
column-gap: 3em;
|
20431
|
+
align-items: flex-start;
|
20432
|
+
}
|
20433
|
+
._container_q17yq_1 {
|
20434
|
+
display: flex;
|
20435
|
+
flex-direction: row;
|
20436
|
+
flex-wrap: wrap;
|
20437
|
+
gap: 0;
|
20438
|
+
margin-top: -0.2rem;
|
20439
|
+
margin-bottom: 0.2rem;
|
20263
20440
|
}
|
20264
20441
|
|
20265
|
-
.
|
20266
|
-
|
20442
|
+
._grid_q17yq_10 {
|
20443
|
+
display: grid;
|
20444
|
+
grid-template-rows: repeat(auto-fill, minmax(10px, 1fr));
|
20445
|
+
grid-template-columns: 1fr;
|
20446
|
+
gap: 0.1em;
|
20447
|
+
padding-right: 1em;
|
20267
20448
|
}
|
20268
|
-
.
|
20269
|
-
|
20270
|
-
|
20449
|
+
._container_1pujw_1 {
|
20450
|
+
display: flex;
|
20451
|
+
padding-top: 0;
|
20452
|
+
margin-left: 0.5rem;
|
20453
|
+
min-width: 250px;
|
20271
20454
|
}
|
20272
20455
|
|
20273
|
-
.
|
20274
|
-
|
20275
|
-
|
20276
|
-
|
20456
|
+
._wrapper_1pujw_8 {
|
20457
|
+
display: grid;
|
20458
|
+
grid-template-columns: minmax(auto, 1fr) 1fr;
|
20459
|
+
width: 100%;
|
20277
20460
|
}
|
20278
20461
|
|
20279
|
-
.
|
20280
|
-
margin-
|
20462
|
+
._toggle_1pujw_14 {
|
20463
|
+
margin-top: 0.3em;
|
20464
|
+
font-size: 1em;
|
20465
|
+
padding: 0rem 0.1rem 0.1rem 0rem;
|
20466
|
+
display: flex;
|
20281
20467
|
}
|
20282
|
-
|
20283
|
-
|
20468
|
+
|
20469
|
+
._body_1pujw_21 {
|
20470
|
+
display: flex;
|
20471
|
+
flex-direction: column;
|
20472
|
+
margin-left: 0.2rem;
|
20284
20473
|
}
|
20285
20474
|
|
20286
|
-
.
|
20287
|
-
|
20475
|
+
._bodyContainer_1pujw_27 {
|
20476
|
+
margin-top: 0.1rem;
|
20477
|
+
display: grid;
|
20478
|
+
grid-template-columns: minmax(30px, max-content) minmax(100px, max-content);
|
20288
20479
|
}
|
20289
20480
|
|
20290
|
-
.
|
20291
|
-
|
20292
|
-
|
20293
|
-
border-bottom-right-radius: 0;
|
20294
|
-
border-bottom: none;
|
20481
|
+
._taskTitle_1pujw_33 {
|
20482
|
+
font-weight: 600;
|
20483
|
+
margin-right: 0.3rem;
|
20295
20484
|
}
|
20296
20485
|
|
20297
|
-
.
|
20298
|
-
|
20299
|
-
border-top-right-radius: 0;
|
20486
|
+
._taskModel_1pujw_38 {
|
20487
|
+
padding-top: 0.4rem;
|
20300
20488
|
}
|
20301
|
-
|
20302
|
-
|
20489
|
+
|
20490
|
+
._taskStatus_1pujw_42 {
|
20303
20491
|
display: flex;
|
20304
|
-
|
20492
|
+
justify-content: end;
|
20493
|
+
margin-right: 1em;
|
20494
|
+
margin-bottom: 0;
|
20305
20495
|
}
|
20306
20496
|
|
20307
|
-
.
|
20308
|
-
|
20309
|
-
|
20310
|
-
|
20311
|
-
|
20497
|
+
._secondaryContainer_1pujw_49 {
|
20498
|
+
opacity: 0.7;
|
20499
|
+
margin-top: -0.1rem;
|
20500
|
+
padding-bottom: 0;
|
20501
|
+
display: grid;
|
20502
|
+
grid-template-columns: minmax(0, max-content) max-content;
|
20312
20503
|
}
|
20313
|
-
.
|
20314
|
-
|
20504
|
+
._button_12472_1 {
|
20505
|
+
display: flex;
|
20506
|
+
border: none;
|
20507
|
+
flex-direction: row;
|
20508
|
+
background-color: unset;
|
20509
|
+
color: var(--bs-link-color);
|
20315
20510
|
}
|
20316
20511
|
|
20317
|
-
.
|
20512
|
+
._button_12472_1:hover {
|
20513
|
+
color: var(--bs-link-hover-color);
|
20514
|
+
cursor: pointer;
|
20515
|
+
}
|
20516
|
+
|
20517
|
+
._label_12472_14 {
|
20518
|
+
margin-left: 0.4em;
|
20519
|
+
}
|
20520
|
+
._modal_1tvha_1 {
|
20318
20521
|
margin-left: auto;
|
20319
20522
|
margin-right: auto;
|
20320
20523
|
display: flex;
|
20321
20524
|
flex: 1 1 auto;
|
20322
20525
|
justify-content: center;
|
20526
|
+
max-width: 90vw;
|
20527
|
+
margin-top: 3rem;
|
20528
|
+
border-radius: var(--bs-border-radius);
|
20529
|
+
position: relative;
|
20530
|
+
z-index: 1050;
|
20323
20531
|
}
|
20324
20532
|
|
20325
|
-
.
|
20326
|
-
|
20327
|
-
align-items: center;
|
20533
|
+
._header_1tvha_14 {
|
20534
|
+
height: 2em;
|
20328
20535
|
}
|
20329
20536
|
|
20330
|
-
.
|
20331
|
-
|
20332
|
-
font-weight: 300;
|
20333
|
-
padding: 0em 0.5em;
|
20334
|
-
flex: 1;
|
20335
|
-
text-align: right;
|
20537
|
+
._modalTitle_1tvha_18 {
|
20538
|
+
font-weight: 600;
|
20336
20539
|
}
|
20337
20540
|
|
20338
|
-
.
|
20339
|
-
|
20340
|
-
|
20541
|
+
._btnClose_1tvha_22 {
|
20542
|
+
height: 0.8em;
|
20543
|
+
width: 0.8em;
|
20341
20544
|
}
|
20342
20545
|
|
20343
|
-
|
20344
|
-
|
20345
|
-
|
20546
|
+
/* Backdrop styling for the glass effect */
|
20547
|
+
._backdrop_1tvha_28 {
|
20548
|
+
position: fixed;
|
20549
|
+
top: 0;
|
20550
|
+
left: 0;
|
20551
|
+
width: 100%;
|
20552
|
+
height: 100%;
|
20553
|
+
background-color: var(--inspect-glass-color);
|
20554
|
+
opacity: var(--inspect-glass-opacity);
|
20346
20555
|
|
20347
|
-
|
20348
|
-
max-width: 100%;
|
20349
|
-
margin-left: var(--bs-modal-margin);
|
20350
|
-
margin-right: var(--bs-modal-margin);
|
20556
|
+
z-index: 1040;
|
20351
20557
|
}
|
20352
|
-
|
20353
|
-
|
20558
|
+
._simpleMetricsRows_yha6g_1 {
|
20559
|
+
display: flex;
|
20560
|
+
flex-direction: row;
|
20561
|
+
flex-wrap: wrap;
|
20562
|
+
justify-content: end;
|
20354
20563
|
height: 100%;
|
20564
|
+
align-items: center;
|
20565
|
+
max-height: 15em;
|
20566
|
+
overflow: scroll;
|
20355
20567
|
}
|
20356
20568
|
|
20357
|
-
.
|
20358
|
-
padding: 0 0 0 1em;
|
20569
|
+
._multiMetricsRows_yha6g_12 {
|
20359
20570
|
display: flex;
|
20571
|
+
flex-direction: row;
|
20572
|
+
flex-wrap: wrap;
|
20573
|
+
justify-content: end;
|
20574
|
+
align-items: center;
|
20575
|
+
margin-top: 0.2rem;
|
20576
|
+
padding-bottom: 0.4rem;
|
20577
|
+
row-gap: 1em;
|
20578
|
+
max-height: 15em;
|
20579
|
+
overflow: scroll;
|
20580
|
+
align-items: baseline;
|
20360
20581
|
}
|
20361
20582
|
|
20362
|
-
.
|
20363
|
-
|
20364
|
-
|
20365
|
-
|
20583
|
+
._verticalMetricReducer_yha6g_26 {
|
20584
|
+
font-size: var(--inspect-font-size-smaller);
|
20585
|
+
text-align: center;
|
20586
|
+
padding-top: 0.3rem;
|
20587
|
+
margin-bottom: -0.3rem;
|
20366
20588
|
}
|
20367
|
-
|
20368
|
-
|
20589
|
+
|
20590
|
+
._verticalMetricName_yha6g_33 {
|
20591
|
+
font-size: var(--inspect-font-size-smaller);
|
20592
|
+
text-align: center;
|
20593
|
+
padding-top: 0.3rem;
|
20594
|
+
margin-bottom: -0.2rem;
|
20595
|
+
border-bottom: solid var(--bs-border-color) 1px;
|
20369
20596
|
}
|
20370
|
-
|
20597
|
+
|
20598
|
+
._verticalMetricValue_yha6g_41 {
|
20599
|
+
font-weight: 500;
|
20600
|
+
text-align: center;
|
20601
|
+
}
|
20602
|
+
|
20603
|
+
._multiScorer_yha6g_46 {
|
20604
|
+
padding-left: 0;
|
20371
20605
|
display: flex;
|
20606
|
+
flex-direction: column;
|
20607
|
+
padding: 0.5em 1em;
|
20372
20608
|
}
|
20373
20609
|
|
20374
|
-
.
|
20375
|
-
|
20376
|
-
margin-right: 0.3em;
|
20377
|
-
margin-left: 0.2em;
|
20610
|
+
._multiScorerIndent_yha6g_53 {
|
20611
|
+
padding-left: 1.5em;
|
20378
20612
|
}
|
20379
|
-
|
20380
|
-
|
20381
|
-
|
20382
|
-
margin-
|
20613
|
+
|
20614
|
+
._multiScorerReducer_yha6g_57 {
|
20615
|
+
text-align: center;
|
20616
|
+
margin-bottom: -0.3rem;
|
20617
|
+
margin-top: 0.2em;
|
20383
20618
|
}
|
20384
20619
|
|
20385
|
-
.
|
20386
|
-
|
20620
|
+
._multiScorerLabel_yha6g_63 {
|
20621
|
+
text-align: center;
|
20622
|
+
border-bottom: solid var(--bs-border-color) 1px;
|
20623
|
+
margin-bottom: -0.1rem;
|
20387
20624
|
}
|
20388
20625
|
|
20389
|
-
.
|
20390
|
-
|
20391
|
-
|
20392
|
-
|
20393
|
-
|
20626
|
+
._multiScorerValue_yha6g_69 {
|
20627
|
+
display: grid;
|
20628
|
+
grid-template-columns: auto auto;
|
20629
|
+
grid-auto-rows: auto;
|
20630
|
+
grid-column-gap: 0.3rem;
|
20631
|
+
grid-row-gap: 0;
|
20632
|
+
padding-top: 0.3em;
|
20633
|
+
}
|
20634
|
+
|
20635
|
+
._multiScorerValueContent_yha6g_78 {
|
20636
|
+
font-weight: 600;
|
20637
|
+
text-align: center;
|
20394
20638
|
}
|
20395
|
-
|
20396
|
-
|
20639
|
+
|
20640
|
+
._multiScoreMetricGrid_yha6g_83 {
|
20641
|
+
display: grid;
|
20642
|
+
grid-template-rows: auto auto;
|
20643
|
+
column-gap: 1em;
|
20644
|
+
padding: 0 0.2em;
|
20645
|
+
justify-content: center;
|
20397
20646
|
}
|
20398
20647
|
|
20399
|
-
.
|
20400
|
-
|
20648
|
+
._moreButton_yha6g_91 {
|
20649
|
+
margin-top: 0.5em;
|
20650
|
+
margin-bottom: 0.5em;
|
20651
|
+
padding-right: 0;
|
20401
20652
|
}
|
20402
20653
|
|
20403
|
-
.
|
20404
|
-
|
20654
|
+
._metricsSummary_yha6g_97 {
|
20655
|
+
display: flex;
|
20656
|
+
flex-direction: column;
|
20657
|
+
align-items: flex-end;
|
20405
20658
|
}
|
20406
20659
|
|
20407
|
-
.
|
20408
|
-
|
20409
|
-
margin-left: 0.2em;
|
20660
|
+
._modalScores_yha6g_103 {
|
20661
|
+
padding-bottom: 4em;
|
20410
20662
|
}
|
20411
|
-
.
|
20412
|
-
|
20413
|
-
display: grid;
|
20414
|
-
grid-template-columns: 1fr;
|
20415
|
-
align-content: baseline;
|
20416
|
-
justify-items: center;
|
20663
|
+
._table_12koy_1 {
|
20664
|
+
margin-bottom: 0;
|
20417
20665
|
}
|
20418
20666
|
|
20419
|
-
.
|
20420
|
-
|
20421
|
-
|
20422
|
-
|
20667
|
+
._scorer_12koy_5,
|
20668
|
+
._value_12koy_6 {
|
20669
|
+
padding-top: 0.2em !important;
|
20670
|
+
padding-bottom: 0.2em !important;
|
20423
20671
|
}
|
20424
20672
|
|
20425
|
-
.
|
20673
|
+
._label_12koy_11,
|
20674
|
+
._value_12koy_6 {
|
20426
20675
|
text-align: center;
|
20427
|
-
|
20676
|
+
padding-left: 1em;
|
20677
|
+
padding-right: 1em;
|
20428
20678
|
}
|
20429
|
-
|
20430
|
-
|
20431
|
-
|
20432
|
-
padding-
|
20433
|
-
|
20434
|
-
cursor: pointer;
|
20435
|
-
overflow-y: hidden;
|
20436
|
-
grid-gap: 10px;
|
20437
|
-
padding-left: 1rem;
|
20438
|
-
padding-right: 1rem;
|
20679
|
+
|
20680
|
+
._label_12koy_11 {
|
20681
|
+
font-weight: 400;
|
20682
|
+
padding-left: 1em;
|
20683
|
+
padding-right: 1em;
|
20439
20684
|
}
|
20440
20685
|
|
20441
|
-
.
|
20442
|
-
|
20686
|
+
._scorer_12koy_5 {
|
20687
|
+
font-weight: 400;
|
20443
20688
|
}
|
20444
20689
|
|
20445
|
-
.
|
20446
|
-
|
20447
|
-
|
20448
|
-
display: block;
|
20690
|
+
._groupSeparator_12koy_28 {
|
20691
|
+
padding-top: 2em;
|
20692
|
+
border-bottom: hidden;
|
20449
20693
|
}
|
20450
20694
|
|
20451
|
-
.
|
20452
|
-
|
20453
|
-
opacity: 0.7;
|
20695
|
+
._tableBody_12koy_33 {
|
20696
|
+
border-top-color: var(--bs-light-border-subtle);
|
20454
20697
|
}
|
20455
20698
|
|
20456
|
-
|
20457
|
-
|
20458
|
-
|
20699
|
+
thead,
|
20700
|
+
thead tr,
|
20701
|
+
thead td,
|
20702
|
+
thead th {
|
20703
|
+
border: none !important;
|
20704
|
+
padding: 0 !important;
|
20459
20705
|
}
|
20460
20706
|
|
20461
|
-
.
|
20462
|
-
|
20707
|
+
._tableSeparator_12koy_45,
|
20708
|
+
._tableSeparator_12koy_45 tr,
|
20709
|
+
._tableSeparator_12koy_45 td,
|
20710
|
+
._tableSeparator_12koy_45 th {
|
20711
|
+
border: none !important;
|
20712
|
+
}
|
20713
|
+
._statusContainer_1sckj_1 {
|
20714
|
+
display: inline-block;
|
20715
|
+
margin-top: 0.3em;
|
20463
20716
|
}
|
20464
20717
|
|
20465
|
-
.
|
20466
|
-
|
20718
|
+
._status_1sckj_1 {
|
20719
|
+
display: grid;
|
20720
|
+
grid-template-columns: auto auto;
|
20467
20721
|
}
|
20468
20722
|
|
20469
|
-
.
|
20470
|
-
|
20471
|
-
justify-self: center;
|
20723
|
+
._statusText_1sckj_11 {
|
20724
|
+
margin-top: 0.2em;
|
20472
20725
|
}
|
20473
20726
|
|
20474
|
-
.
|
20475
|
-
|
20476
|
-
|
20727
|
+
._metricsRows_1sckj_15 {
|
20728
|
+
margin-top: 0.3em;
|
20729
|
+
margin-left: 1.25em;
|
20730
|
+
display: grid;
|
20731
|
+
grid-template-columns: auto auto;
|
20732
|
+
grid-template-rows: auto;
|
20733
|
+
column-gap: 0.5em;
|
20477
20734
|
}
|
20478
20735
|
|
20479
|
-
.
|
20480
|
-
|
20481
|
-
|
20482
|
-
|
20736
|
+
._icon_1sckj_24 {
|
20737
|
+
font-size: var(--inspect-font-size-large);
|
20738
|
+
margin-right: 0.3em;
|
20739
|
+
margin-top: -0.1em;
|
20483
20740
|
}
|
20484
|
-
|
20485
|
-
|
20486
|
-
text-transform: uppercase;
|
20741
|
+
|
20742
|
+
._value_1sckj_30 {
|
20487
20743
|
font-weight: 600;
|
20488
|
-
border-bottom: solid 1px var(--bs-border-color);
|
20489
20744
|
}
|
20490
|
-
.
|
20491
|
-
|
20492
|
-
|
20745
|
+
._statusPanel_66f9o_1 {
|
20746
|
+
padding: 1em;
|
20747
|
+
margin-top: 0.5em;
|
20748
|
+
text-transform: uppercase;
|
20749
|
+
font-size: var(--inspect-font-size-smaller);
|
20493
20750
|
display: grid;
|
20494
|
-
grid-template-columns:
|
20495
|
-
justify-content:
|
20751
|
+
grid-template-columns: auto auto;
|
20752
|
+
justify-content: end;
|
20753
|
+
}
|
20496
20754
|
|
20497
|
-
|
20755
|
+
._statusIcon_66f9o_11 {
|
20756
|
+
font-size: var(--inspect-font-size-large);
|
20757
|
+
margin-right: 0.3em;
|
20758
|
+
margin-top: -0.1em;
|
20759
|
+
}
|
20760
|
+
._staticCol_xzzhl_1 {
|
20761
|
+
flex-shrink: 0;
|
20498
20762
|
}
|
20499
20763
|
|
20500
|
-
.
|
20501
|
-
|
20502
|
-
grid-template-columns: max-content max-content;
|
20503
|
-
column-gap: 0.3em;
|
20504
|
-
padding-top: 0.2em;
|
20764
|
+
._justifyLeft_xzzhl_5 {
|
20765
|
+
justify-self: left;
|
20505
20766
|
}
|
20506
20767
|
|
20507
|
-
.
|
20508
|
-
|
20509
|
-
width: 11px;
|
20510
|
-
color: var(--bs-secondary);
|
20511
|
-
border-width: 1px;
|
20768
|
+
._justifyCenter_xzzhl_9 {
|
20769
|
+
justify-self: center;
|
20512
20770
|
}
|
20513
20771
|
|
20514
|
-
.
|
20515
|
-
|
20516
|
-
margin-top: -3px;
|
20772
|
+
._justifyRight_xzzhl_13 {
|
20773
|
+
justify-self: right;
|
20517
20774
|
}
|
20518
|
-
|
20775
|
+
|
20776
|
+
._valueGrid_xzzhl_17 {
|
20777
|
+
margin: 0;
|
20778
|
+
padding: 0.2em 1em 0.2em 1em;
|
20519
20779
|
display: grid;
|
20520
|
-
|
20521
|
-
|
20522
|
-
border-bottom: solid var(--bs-light-border-subtle) 1px;
|
20523
|
-
grid-gap: 10px;
|
20524
|
-
padding-left: 1rem;
|
20525
|
-
padding-right: 1rem;
|
20780
|
+
grid-column-gap: 1em;
|
20781
|
+
border-top: 1px solid var(--bs-border-color);
|
20526
20782
|
}
|
20527
20783
|
|
20528
|
-
.
|
20529
|
-
|
20784
|
+
._container_xzzhl_25 {
|
20785
|
+
margin: 0;
|
20786
|
+
width: 100%;
|
20530
20787
|
}
|
20531
|
-
.
|
20532
|
-
|
20533
|
-
|
20534
|
-
|
20788
|
+
._navbarContainer_838qu_1 {
|
20789
|
+
display: flex;
|
20790
|
+
padding-top: 0;
|
20791
|
+
margin-left: 0.5rem;
|
20792
|
+
min-width: 250px;
|
20535
20793
|
}
|
20536
20794
|
|
20537
|
-
.
|
20795
|
+
._navbarToggle_838qu_8 {
|
20796
|
+
padding: 0rem 0.1rem 0.1rem 0rem;
|
20538
20797
|
display: flex;
|
20539
|
-
flex-direction: column;
|
20540
|
-
width: 100%;
|
20541
20798
|
}
|
20542
|
-
|
20543
|
-
|
20799
|
+
|
20800
|
+
._navbarBody_838qu_13 {
|
20544
20801
|
display: flex;
|
20545
|
-
|
20802
|
+
flex-direction: column;
|
20803
|
+
margin-left: 0.2rem;
|
20546
20804
|
}
|
20547
20805
|
|
20548
|
-
.
|
20549
|
-
margin-top:
|
20806
|
+
._navbarBodyContainer_838qu_19 {
|
20807
|
+
margin-top: 0.1rem;
|
20550
20808
|
display: grid;
|
20551
|
-
grid-template-columns: max-content max-content;
|
20552
|
-
column-gap: 0.3em;
|
20809
|
+
grid-template-columns: minmax(30px, max-content) minmax(100px, max-content);
|
20553
20810
|
}
|
20554
20811
|
|
20555
|
-
.
|
20556
|
-
|
20557
|
-
|
20558
|
-
width: 15px;
|
20812
|
+
._navbarTaskTitle_838qu_25 {
|
20813
|
+
font-weight: 600;
|
20814
|
+
margin-right: 0.3rem;
|
20559
20815
|
}
|
20560
20816
|
|
20561
|
-
.
|
20562
|
-
|
20817
|
+
._navbarTaskModel_838qu_30 {
|
20818
|
+
padding-top: 0.4rem;
|
20563
20819
|
}
|
20564
|
-
|
20820
|
+
|
20821
|
+
._navbarSecondaryContainer_838qu_34 {
|
20822
|
+
opacity: 0.7;
|
20823
|
+
margin-top: 0.1rem;
|
20824
|
+
padding-bottom: 0;
|
20565
20825
|
display: grid;
|
20566
|
-
grid-template-columns:
|
20567
|
-
|
20568
|
-
|
20826
|
+
grid-template-columns: minmax(0, max-content) max-content;
|
20827
|
+
}
|
20828
|
+
|
20829
|
+
._navbarStatus_838qu_42 {
|
20830
|
+
justify-content: end;
|
20831
|
+
margin-right: 1em;
|
20832
|
+
margin-bottom: 0;
|
20833
|
+
}
|
20834
|
+
|
20835
|
+
._navbarWrapper_838qu_48 {
|
20836
|
+
width: 100%;
|
20837
|
+
}
|
20838
|
+
._navbarInnerWrapper_838qu_51 {
|
20839
|
+
display: grid;
|
20840
|
+
grid-template-columns: 1fr auto;
|
20569
20841
|
}
|