@abot-ai/runtime 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -3
- package/dist/src/capabilities/tool-types.d.ts +1 -1
- package/dist/src/model-gateway/providers/ollama/generation-options.d.ts +1 -3
- package/dist/src/model-gateway/providers/ollama/generation-options.js +1 -5
- package/dist/src/model-gateway/providers/ollama/payload.js +0 -8
- package/dist/src/model-gateway/server/request-body.js +1 -0
- package/dist/src/plugin-sdk/index.d.ts +2 -0
- package/dist/src/plugin-sdk/index.js +2 -0
- package/dist/src/plugin-sdk/tool-availability-brief.d.ts +9 -0
- package/dist/src/plugin-sdk/tool-availability-brief.js +48 -0
- package/dist/src/plugin-sdk/tool-availability-overview.d.ts +9 -0
- package/dist/src/plugin-sdk/tool-availability-overview.js +62 -0
- package/dist/src/runtime/adapters/registered-tool-payload-plan.d.ts +0 -9
- package/dist/src/runtime/adapters/registered-tool-payload-plan.js +0 -67
- package/dist/src/runtime/adapters/registered-tool-payload-related-artifacts.d.ts +13 -0
- package/dist/src/runtime/adapters/registered-tool-payload-related-artifacts.js +84 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/catalog.js +4 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/execution.js +3 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-lifecycle.d.ts +1 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-lifecycle.js +11 -1
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-stages.d.ts +1 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-stages.js +9 -1
- package/dist/src/runtime/capabilities/request-bound-tool-registry.js +1 -24
- package/dist/src/runtime/capabilities/tool-availability.d.ts +6 -0
- package/dist/src/runtime/capabilities/tool-availability.js +28 -0
- package/dist/src/runtime/context/capability-brief.d.ts +25 -0
- package/dist/src/runtime/context/capability-brief.js +106 -0
- package/dist/src/runtime/context/request-tool-results-message-binding.d.ts +6 -0
- package/dist/src/runtime/context/request-tool-results-message-binding.js +30 -0
- package/dist/src/runtime/context/request-tool-results-scope.d.ts +3 -0
- package/dist/src/runtime/context/request-tool-results-scope.js +8 -0
- package/dist/src/runtime/context/request-tool-results.d.ts +8 -4
- package/dist/src/runtime/context/request-tool-results.js +49 -38
- package/dist/src/runtime/orchestration/role-calls/candidate-validation.js +8 -1
- package/dist/src/runtime/orchestration/role-calls/child-return.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-calls/child-return.js +25 -5
- package/dist/src/runtime/orchestration/role-calls/command-decoder.js +8 -3
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/child-transitions.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/child-transitions.js +17 -2
- package/dist/src/runtime/orchestration/role-calls/command-dispatch.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/command-dispatch.js +2 -2
- package/dist/src/runtime/orchestration/role-calls/contracts.d.ts +5 -2
- package/dist/src/runtime/orchestration/role-calls/contracts.js +4 -4
- package/dist/src/runtime/orchestration/role-calls/dependency-results.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/dependency-results.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/index.d.ts +5 -1
- package/dist/src/runtime/orchestration/role-calls/index.js +5 -1
- package/dist/src/runtime/orchestration/role-calls/ledger.d.ts +3 -1
- package/dist/src/runtime/orchestration/role-calls/ledger.js +9 -2
- package/dist/src/runtime/orchestration/role-calls/reducer.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/reducer.js +2 -2
- package/dist/src/runtime/orchestration/role-calls/result-receipt.d.ts +49 -0
- package/dist/src/runtime/orchestration/role-calls/result-receipt.js +188 -0
- package/dist/src/runtime/orchestration/role-calls/return-result-receipt.d.ts +19 -0
- package/dist/src/runtime/orchestration/role-calls/return-result-receipt.js +52 -0
- package/dist/src/runtime/orchestration/role-calls/transactions.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-lineage.d.ts +34 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-lineage.js +185 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-receipt.d.ts +36 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-receipt.js +187 -0
- package/dist/src/runtime/orchestration/role-executors/activation/result-normalization.js +6 -3
- package/dist/src/runtime/orchestration/role-executors/child-invocation/transaction.js +1 -0
- package/dist/src/runtime/orchestration/role-executors/contracts.d.ts +2 -1
- package/dist/src/runtime/orchestration/worker-capabilities/assignment-provenance.d.ts +36 -0
- package/dist/src/runtime/orchestration/worker-capabilities/assignment-provenance.js +171 -0
- package/dist/src/runtime/orchestration/worker-capabilities/contracts.d.ts +32 -1
- package/dist/src/runtime/orchestration/worker-capabilities/execution/invocation-preparation.d.ts +2 -1
- package/dist/src/runtime/orchestration/worker-capabilities/execution/invocation-preparation.js +3 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution.js +42 -19
- package/dist/src/runtime/orchestration/worker-capabilities/index.d.ts +2 -0
- package/dist/src/runtime/orchestration/worker-capabilities/index.js +2 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-assignment-validation.d.ts +3 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-assignment-validation.js +30 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-author.js +8 -19
- package/dist/src/runtime/orchestration/worker-capabilities/payload-contracts.d.ts +5 -1
- package/dist/src/runtime/orchestration/worker-capabilities/payload-instructions.js +1 -1
- package/dist/src/runtime/orchestration/worker-capabilities/payload-source-provenance.d.ts +14 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-source-provenance.js +132 -0
- package/dist/src/runtime/request/capability-brief.d.ts +5 -0
- package/dist/src/runtime/request/capability-brief.js +24 -0
- package/dist/src/runtime/request/execution-scope.d.ts +2 -1
- package/dist/src/runtime/request/role-executor-composition.js +1 -1
- package/dist/src/runtime/request/worker-capability-composition.d.ts +2 -1
- package/dist/src/runtime/request/worker-capability-composition.js +6 -1
- package/dist/src/runtime/request/worker-capability-payload.js +11 -8
- package/dist/src/runtime/steps/execution-agent/prompt.js +4 -3
- package/dist/src/runtime/steps/planner-decision/capability-catalog-context.d.ts +14 -0
- package/dist/src/runtime/steps/planner-decision/capability-catalog-context.js +87 -0
- package/dist/src/runtime/steps/planner-decision/contracts.d.ts +3 -5
- package/dist/src/runtime/steps/planner-decision/contracts.js +3 -3
- package/dist/src/runtime/steps/planner-decision/format.d.ts +3 -2
- package/dist/src/runtime/steps/planner-decision/format.js +73 -76
- package/dist/src/runtime/steps/planner-decision/input.d.ts +4 -3
- package/dist/src/runtime/steps/planner-decision/input.js +10 -7
- package/dist/src/runtime/steps/planner-decision/parser.d.ts +3 -2
- package/dist/src/runtime/steps/planner-decision/parser.js +10 -19
- package/dist/src/runtime/steps/planner-decision/plan-parser.js +18 -12
- package/dist/src/runtime/steps/planner-decision/prompt.js +33 -28
- package/dist/src/runtime/steps/planner-decision/resume.d.ts +1 -1
- package/dist/src/runtime/steps/planner-decision/resume.js +38 -1
- package/dist/src/runtime/steps/planner-decision/run.d.ts +3 -2
- package/dist/src/runtime/steps/reviewer-decision/audit-coverage.d.ts +10 -0
- package/dist/src/runtime/steps/reviewer-decision/audit-coverage.js +186 -0
- package/dist/src/runtime/steps/reviewer-decision/contracts.d.ts +3 -8
- package/dist/src/runtime/steps/reviewer-decision/contracts.js +12 -6
- package/dist/src/runtime/steps/reviewer-decision/delegated-context.d.ts +24 -0
- package/dist/src/runtime/steps/reviewer-decision/delegated-context.js +70 -0
- package/dist/src/runtime/steps/reviewer-decision/diagnostics.js +1 -1
- package/dist/src/runtime/steps/reviewer-decision/format.js +37 -24
- package/dist/src/runtime/steps/reviewer-decision/input.js +1 -1
- package/dist/src/runtime/steps/reviewer-decision/model-context.d.ts +4 -3
- package/dist/src/runtime/steps/reviewer-decision/model-context.js +92 -10
- package/dist/src/runtime/steps/reviewer-decision/parser.js +19 -1
- package/dist/src/runtime/steps/reviewer-decision/projection.js +42 -68
- package/dist/src/runtime/steps/reviewer-decision/prompt.js +10 -5
- package/dist/src/runtime/steps/reviewer-decision/run.js +12 -3
- package/dist/src/runtime/steps/reviewer-decision/verification-coverage.d.ts +14 -0
- package/dist/src/runtime/steps/reviewer-decision/verification-coverage.js +52 -0
- package/dist/src/runtime/steps/supervisor-decision/capability-brief.d.ts +14 -0
- package/dist/src/runtime/steps/supervisor-decision/capability-brief.js +38 -0
- package/dist/src/runtime/steps/supervisor-decision/contracts.d.ts +7 -3
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.d.ts +2 -0
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.js +8 -2
- package/dist/src/runtime/steps/supervisor-decision/format.js +32 -20
- package/dist/src/runtime/steps/supervisor-decision/input.d.ts +4 -1
- package/dist/src/runtime/steps/supervisor-decision/input.js +19 -1
- package/dist/src/runtime/steps/supervisor-decision/parser.js +62 -59
- package/dist/src/runtime/steps/supervisor-decision/prompt.js +6 -7
- package/dist/src/runtime/steps/supervisor-decision/resume.js +47 -1
- package/dist/src/runtime/steps/supervisor-decision/run.js +10 -0
- package/dist/src/runtime/steps/supervisor-decision/working-directory.js +2 -1
- package/dist/src/runtime/steps/worker-decision/contracts.d.ts +2 -1
- package/dist/src/runtime/steps/worker-decision/input/canonical-state.js +8 -1
- package/dist/src/runtime/steps/worker-decision/input/diagnostic-projection.js +2 -2
- package/dist/src/runtime/steps/worker-decision/input/prompt-context.d.ts +1 -0
- package/dist/src/runtime/steps/worker-decision/input/prompt-context.js +4 -1
- package/dist/src/runtime/steps/worker-decision/input/reference-context.js +34 -14
- package/dist/src/runtime/steps/worker-decision/input/types.d.ts +2 -1
- package/dist/src/runtime/steps/worker-decision/input.d.ts +1 -0
- package/dist/src/runtime/steps/worker-decision/input.js +1 -0
- package/dist/src/runtime/steps/worker-decision/payload-dependency-results.d.ts +8 -0
- package/dist/src/runtime/steps/worker-decision/payload-dependency-results.js +19 -0
- package/dist/src/runtime/steps/worker-decision/prompt.js +8 -8
- package/dist/src/runtime/steps/worker-decision/result-author.js +18 -11
- package/dist/src/runtime/steps/worker-decision/run.js +2 -2
- package/dist/src/web-ui/app/ARCHITECTURE.md +19 -6
- package/dist/src/web-ui/app/app.js +6 -7
- package/dist/src/web-ui/app/components/composer-context-window.d.ts +25 -0
- package/dist/src/web-ui/app/components/composer-context-window.js +155 -0
- package/dist/src/web-ui/app/components/composer-plan.d.ts +9 -0
- package/dist/src/web-ui/app/components/composer-plan.js +128 -0
- package/dist/src/web-ui/app/components/conversation-activity.d.ts +5 -6
- package/dist/src/web-ui/app/components/conversation-activity.js +64 -157
- package/dist/src/web-ui/app/components/conversation-role-cards.d.ts +23 -0
- package/dist/src/web-ui/app/components/conversation-role-cards.js +181 -0
- package/dist/src/web-ui/app/components/conversation-sidebar-layout.js +12 -0
- package/dist/src/web-ui/app/components/conversation-sources.d.ts +7 -0
- package/dist/src/web-ui/app/components/conversation-sources.js +182 -0
- package/dist/src/web-ui/app/components/conversation-view.js +34 -6
- package/dist/src/web-ui/app/components/model-selector.js +4 -1
- package/dist/src/web-ui/app/components/operations-section.js +46 -0
- package/dist/src/web-ui/app/components/workspace-shell.js +86 -78
- package/dist/src/web-ui/app/controllers/realtime-event-controller.d.ts +1 -0
- package/dist/src/web-ui/app/controllers/realtime-event-controller.js +55 -90
- package/dist/src/web-ui/app/controllers/runtime-selection-controller.js +2 -0
- package/dist/src/web-ui/app/controllers/session-controller.js +17 -12
- package/dist/src/web-ui/app/index.html +209 -210
- package/dist/src/web-ui/app/lib/composer-plan-model.d.ts +32 -0
- package/dist/src/web-ui/app/lib/composer-plan-model.js +108 -0
- package/dist/src/web-ui/app/lib/conversation-role-model.d.ts +19 -0
- package/dist/src/web-ui/app/lib/conversation-role-model.js +193 -0
- package/dist/src/web-ui/app/lib/event-presentation.js +30 -9
- package/dist/src/web-ui/app/lib/source-url-policy.d.ts +2 -0
- package/dist/src/web-ui/app/lib/source-url-policy.js +31 -0
- package/dist/src/web-ui/app/lib/task-progress.d.ts +53 -0
- package/dist/src/web-ui/app/lib/task-progress.js +233 -0
- package/dist/src/web-ui/app/lib/tool-invocation-count.d.ts +5 -0
- package/dist/src/web-ui/app/lib/tool-invocation-count.js +21 -0
- package/dist/src/web-ui/app/lib/web-source-event.d.ts +8 -0
- package/dist/src/web-ui/app/lib/web-source-event.js +21 -0
- package/dist/src/web-ui/app/lib/web-sources.d.ts +36 -0
- package/dist/src/web-ui/app/lib/web-sources.js +177 -0
- package/dist/src/web-ui/app/styles/00-tokens-base.css +15 -3
- package/dist/src/web-ui/app/styles/10-shell-sessions.css +24 -34
- package/dist/src/web-ui/app/styles/12-conversation-sidebar.css +93 -0
- package/dist/src/web-ui/app/styles/20-chat-composer.css +55 -472
- package/dist/src/web-ui/app/styles/21-composer-controls.css +368 -0
- package/dist/src/web-ui/app/styles/22-composer-context-window.css +90 -0
- package/dist/src/web-ui/app/styles/23-composer-plan.css +171 -0
- package/dist/src/web-ui/app/styles/24-conversation-role-cards.css +205 -0
- package/dist/src/web-ui/app/styles/25-conversation-sources.css +141 -0
- package/dist/src/web-ui/app/styles/30-inspector-config.css +21 -209
- package/dist/src/web-ui/app/styles/35-memory-onboarding.css +8 -8
- package/dist/src/web-ui/app/styles/36-memory-management.css +13 -13
- package/dist/src/web-ui/app/styles/37-config-operations.css +197 -0
- package/dist/src/web-ui/app/styles/40-config-workspace.css +36 -36
- package/dist/src/web-ui/app/styles/90-responsive.css +14 -77
- package/dist/src/web-ui/app/styles/foundation.css +2 -2
- package/dist/src/web-ui/app/styles.css +7 -0
- package/dist/src/web-ui/app/ui-behavior.d.ts +1 -1
- package/dist/src/web-ui/app/ui-behavior.js +1 -1
- package/docs/configuration.md +15 -8
- package/docs/installation.md +7 -4
- package/docs/known-limitations.md +21 -0
- package/docs/plugins.md +28 -13
- package/docs/runtime-invariant-coverage.md +18 -17
- package/docs/runtime-prompt-policy-contracts.md +27 -17
- package/package.json +4 -3
- package/plugins/capability-brief/source/index.ts +5 -48
- package/plugins/capability-brief/src/index.cjs +46 -33
- package/plugins/system-probe/plugin.json +1 -0
- package/plugins/web/README.md +125 -0
- package/plugins/web/plugin.json +1 -1
- package/plugins/web/skills/web_fetch_skill/SKILL.md +2 -2
- package/plugins/web/skills/web_search_skill/SKILL.md +8 -4
- package/plugins/web/source/errors.ts +5 -1
- package/plugins/web/source/fetch-presentation.ts +61 -0
- package/plugins/web/source/fetch-service.ts +2 -31
- package/plugins/web/source/light/config.ts +196 -0
- package/plugins/web/source/light/crawl/origin-gate.ts +134 -0
- package/plugins/web/source/light/crawl/robots-cache.ts +71 -0
- package/plugins/web/source/light/crawl/robots-parser.ts +132 -0
- package/plugins/web/source/light/crawl/robots-policy.ts +154 -0
- package/plugins/web/source/light/crawl/session-budget.ts +141 -0
- package/plugins/web/source/light/crawl/transport.ts +216 -0
- package/plugins/web/source/light/discovery/candidate-values.ts +63 -0
- package/plugins/web/source/light/discovery/feed-document.ts +127 -0
- package/plugins/web/source/light/discovery/html-links.ts +80 -0
- package/plugins/web/source/light/discovery/html-robots-directives.ts +29 -0
- package/plugins/web/source/light/discovery/markup-tree.ts +145 -0
- package/plugins/web/source/light/discovery/origin-dates.ts +71 -0
- package/plugins/web/source/light/discovery/sitemap-document.ts +63 -0
- package/plugins/web/source/light/documents/cache-policy.ts +28 -0
- package/plugins/web/source/light/documents/document-cache.ts +99 -0
- package/plugins/web/source/light/documents/document-charset.ts +89 -0
- package/plugins/web/source/light/documents/document-contract.ts +20 -0
- package/plugins/web/source/light/documents/document-reader.ts +75 -0
- package/plugins/web/source/light/documents/extract-document.ts +124 -0
- package/plugins/web/source/light/documents/http-cache-freshness.ts +68 -0
- package/plugins/web/source/light/documents/response-decoding.ts +120 -0
- package/plugins/web/source/light/ranking/document-ranking.ts +114 -0
- package/plugins/web/source/light/ranking/query-normalization.ts +69 -0
- package/plugins/web/source/light/search-collection.ts +136 -0
- package/plugins/web/source/light/search-frontier.ts +246 -0
- package/plugins/web/source/light/search-metadata.ts +84 -0
- package/plugins/web/source/light/search-service.ts +154 -0
- package/plugins/web/source/light/search-unavailable.ts +33 -0
- package/plugins/web/source/light/sources/catalog.ts +312 -0
- package/plugins/web/source/light/sources/source-definition.ts +9 -0
- package/plugins/web/source/light/sources/source-selection.ts +35 -0
- package/plugins/web/source/plugin.ts +70 -56
- package/plugins/web/source/public-http.ts +10 -1
- package/plugins/web/source/search-presentation.ts +63 -63
- package/plugins/web/source/search-service-selector.ts +31 -0
- package/plugins/web/source/search-service.ts +6 -0
- package/plugins/web/source/search-source-presentation.ts +76 -0
- package/plugins/web/source/search-types.ts +4 -0
- package/plugins/web/source/source-output-receipts.ts +267 -0
- package/plugins/web/source/source-receipt-budget.ts +51 -0
- package/plugins/web/source/source-receipt-contract.ts +18 -0
- package/plugins/web/src/index.cjs +3214 -288
- package/src/runtime/README.md +30 -9
- package/dist/src/model-gateway/structured-output/budget.d.ts +0 -7
- package/dist/src/model-gateway/structured-output/budget.js +0 -20
- package/dist/src/model-gateway/structured-output/schema-character-estimator.d.ts +0 -1
- package/dist/src/model-gateway/structured-output/schema-character-estimator.js +0 -211
- package/dist/src/model-gateway/structured-output-budget.d.ts +0 -1
- package/dist/src/model-gateway/structured-output-budget.js +0 -1
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
.memory-setup-heading h4 {
|
|
33
33
|
margin-top: 2px;
|
|
34
34
|
color: var(--text-strong);
|
|
35
|
-
font-size:
|
|
35
|
+
font-size: var(--font-size-2xl);
|
|
36
36
|
font-weight: 520;
|
|
37
37
|
line-height: 1.3;
|
|
38
38
|
}
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
max-width: 620px;
|
|
43
43
|
margin-top: 4px;
|
|
44
44
|
color: var(--config-muted, var(--muted));
|
|
45
|
-
font-size:
|
|
45
|
+
font-size: var(--font-size-sm);
|
|
46
46
|
line-height: 1.45;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
.memory-setup-heading .eyebrow {
|
|
50
50
|
color: var(--config-faint, var(--muted-2));
|
|
51
|
-
font-size:
|
|
51
|
+
font-size: var(--font-size-xs);
|
|
52
52
|
font-weight: 450;
|
|
53
53
|
letter-spacing: 0.045em;
|
|
54
54
|
}
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
border: 1px solid var(--config-line, var(--line));
|
|
60
60
|
border-radius: 999px;
|
|
61
61
|
color: var(--config-muted, var(--muted));
|
|
62
|
-
font-size:
|
|
62
|
+
font-size: var(--font-size-xs);
|
|
63
63
|
font-weight: 450;
|
|
64
64
|
line-height: 1.35;
|
|
65
65
|
}
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
gap: 5px;
|
|
86
86
|
min-width: 0;
|
|
87
87
|
color: var(--config-muted, var(--muted));
|
|
88
|
-
font-size:
|
|
88
|
+
font-size: var(--font-size-xs);
|
|
89
89
|
font-weight: 450;
|
|
90
90
|
}
|
|
91
91
|
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
background-color: var(--config-control, var(--panel-solid));
|
|
101
101
|
background-image: none;
|
|
102
102
|
color: var(--config-copy, var(--text));
|
|
103
|
-
font-size:
|
|
103
|
+
font-size: var(--font-size-md);
|
|
104
104
|
font-weight: 400;
|
|
105
105
|
box-shadow: none;
|
|
106
106
|
}
|
|
@@ -142,12 +142,12 @@
|
|
|
142
142
|
|
|
143
143
|
.memory-setup-feedback {
|
|
144
144
|
color: var(--config-muted, var(--muted));
|
|
145
|
-
font-size:
|
|
145
|
+
font-size: var(--font-size-sm);
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
.memory-setup-note {
|
|
149
149
|
padding-top: 12px;
|
|
150
150
|
border-top: 1px solid var(--config-line, var(--line));
|
|
151
151
|
color: var(--config-faint, var(--muted-2));
|
|
152
|
-
font-size:
|
|
152
|
+
font-size: var(--font-size-xs);
|
|
153
153
|
}
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
|
|
41
41
|
.memory-management-heading h4 {
|
|
42
42
|
color: var(--text-strong);
|
|
43
|
-
font-size:
|
|
43
|
+
font-size: var(--font-size-2xl);
|
|
44
44
|
font-weight: 520;
|
|
45
45
|
line-height: 1.3;
|
|
46
46
|
}
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
.memory-management-heading p:last-child {
|
|
56
56
|
max-width: 620px;
|
|
57
57
|
margin-top: 4px;
|
|
58
|
-
font-size:
|
|
58
|
+
font-size: var(--font-size-sm);
|
|
59
59
|
line-height: 1.45;
|
|
60
60
|
}
|
|
61
61
|
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
border-radius: 7px;
|
|
125
125
|
background: var(--config-control, var(--panel-solid));
|
|
126
126
|
color: var(--config-copy, var(--text));
|
|
127
|
-
font-size:
|
|
127
|
+
font-size: var(--font-size-md);
|
|
128
128
|
font-weight: 400;
|
|
129
129
|
box-shadow: none;
|
|
130
130
|
}
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
border-color: transparent;
|
|
152
152
|
background: transparent;
|
|
153
153
|
color: var(--accent-strong);
|
|
154
|
-
font-size:
|
|
154
|
+
font-size: var(--font-size-sm);
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
.memory-clear-search {
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
border-left: 2px solid var(--config-line-strong, var(--line-strong));
|
|
216
216
|
background: rgba(111, 151, 191, 0.045);
|
|
217
217
|
color: var(--config-muted, var(--muted));
|
|
218
|
-
font-size:
|
|
218
|
+
font-size: var(--font-size-sm);
|
|
219
219
|
line-height: 1.45;
|
|
220
220
|
}
|
|
221
221
|
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
min-width: 0;
|
|
268
268
|
overflow-wrap: anywhere;
|
|
269
269
|
white-space: pre-wrap;
|
|
270
|
-
font-size:
|
|
270
|
+
font-size: var(--font-size-md);
|
|
271
271
|
line-height: 1.45;
|
|
272
272
|
}
|
|
273
273
|
|
|
@@ -323,14 +323,14 @@
|
|
|
323
323
|
border: 1px solid var(--config-line, var(--line));
|
|
324
324
|
border-radius: 999px;
|
|
325
325
|
color: var(--config-muted, var(--muted));
|
|
326
|
-
font-size:
|
|
326
|
+
font-size: var(--font-size-xs);
|
|
327
327
|
line-height: 1.25;
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
.memory-record-meta {
|
|
331
331
|
gap: 5px;
|
|
332
332
|
color: var(--config-faint, var(--muted-2));
|
|
333
|
-
font-size:
|
|
333
|
+
font-size: var(--font-size-xs);
|
|
334
334
|
}
|
|
335
335
|
|
|
336
336
|
.memory-record-actions {
|
|
@@ -359,21 +359,21 @@
|
|
|
359
359
|
|
|
360
360
|
.memory-editor-heading h5 {
|
|
361
361
|
color: var(--config-copy, var(--text));
|
|
362
|
-
font-size:
|
|
362
|
+
font-size: var(--font-size-md);
|
|
363
363
|
font-weight: 500;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
366
|
.memory-editor-heading p {
|
|
367
367
|
margin-top: 2px;
|
|
368
368
|
color: var(--config-faint, var(--muted-2));
|
|
369
|
-
font-size:
|
|
369
|
+
font-size: var(--font-size-xs);
|
|
370
370
|
}
|
|
371
371
|
|
|
372
372
|
.memory-editor-card label {
|
|
373
373
|
display: grid;
|
|
374
374
|
gap: 5px;
|
|
375
375
|
color: var(--config-muted, var(--muted));
|
|
376
|
-
font-size:
|
|
376
|
+
font-size: var(--font-size-xs);
|
|
377
377
|
font-weight: 450;
|
|
378
378
|
}
|
|
379
379
|
|
|
@@ -399,14 +399,14 @@
|
|
|
399
399
|
padding: 18px 8px;
|
|
400
400
|
border-bottom: 1px solid var(--config-line, var(--line));
|
|
401
401
|
color: var(--config-muted, var(--muted));
|
|
402
|
-
font-size:
|
|
402
|
+
font-size: var(--font-size-sm);
|
|
403
403
|
text-align: center;
|
|
404
404
|
}
|
|
405
405
|
|
|
406
406
|
.memory-pagination {
|
|
407
407
|
align-items: center;
|
|
408
408
|
color: var(--config-muted, var(--muted));
|
|
409
|
-
font-size:
|
|
409
|
+
font-size: var(--font-size-sm);
|
|
410
410
|
}
|
|
411
411
|
|
|
412
412
|
.memory-management-card .danger-button {
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
/* Operations section within Configuration -------------------------------- */
|
|
2
|
+
|
|
3
|
+
.config-operations-section {
|
|
4
|
+
display: grid;
|
|
5
|
+
align-content: start;
|
|
6
|
+
gap: 18px;
|
|
7
|
+
min-width: 0;
|
|
8
|
+
margin-block-start: 30px;
|
|
9
|
+
padding-block-start: 24px;
|
|
10
|
+
border-top: 1px solid var(--config-line);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.config-operations-heading h3 {
|
|
14
|
+
margin: 0;
|
|
15
|
+
color: var(--config-copy);
|
|
16
|
+
font-size: var(--font-size-2xl);
|
|
17
|
+
font-weight: 520;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.config-operations-heading p {
|
|
21
|
+
margin: 5px 0 0;
|
|
22
|
+
color: var(--config-muted);
|
|
23
|
+
font-size: var(--font-size-md);
|
|
24
|
+
line-height: 1.45;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.operations-tabs {
|
|
28
|
+
position: sticky;
|
|
29
|
+
top: 0;
|
|
30
|
+
z-index: 6;
|
|
31
|
+
display: flex;
|
|
32
|
+
gap: 4px;
|
|
33
|
+
width: min(1260px, 100%);
|
|
34
|
+
padding: 4px;
|
|
35
|
+
border: 1px solid rgba(114, 162, 210, 0.16);
|
|
36
|
+
border-radius: 12px;
|
|
37
|
+
background: rgba(11, 29, 47, 0.96);
|
|
38
|
+
box-shadow: 0 12px 32px rgba(0, 7, 18, 0.14);
|
|
39
|
+
backdrop-filter: blur(16px);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.operations-tab-button {
|
|
43
|
+
flex: 0 1 150px;
|
|
44
|
+
min-height: 36px;
|
|
45
|
+
border: 0;
|
|
46
|
+
border-radius: 9px;
|
|
47
|
+
color: var(--muted);
|
|
48
|
+
font-size: var(--font-size-md);
|
|
49
|
+
font-weight: 620;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.operations-tab-button:hover {
|
|
53
|
+
background: rgba(84, 133, 181, 0.09);
|
|
54
|
+
color: var(--text);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.operations-tab-button.active {
|
|
58
|
+
background: rgba(76, 136, 218, 0.16);
|
|
59
|
+
color: #dceaff;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.operations-tab-page {
|
|
63
|
+
display: none;
|
|
64
|
+
width: min(1260px, 100%);
|
|
65
|
+
min-height: 0;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.operations-tab-page.active {
|
|
69
|
+
display: flex;
|
|
70
|
+
flex-direction: column;
|
|
71
|
+
gap: 16px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.operations-tab-page .runtime-card,
|
|
75
|
+
.operations-tab-page .logs-view {
|
|
76
|
+
min-height: 280px;
|
|
77
|
+
padding: clamp(18px, 3vw, 30px);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.logs-view {
|
|
81
|
+
font-family: var(--font-mono);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.runtime-card {
|
|
85
|
+
padding: 12px;
|
|
86
|
+
overflow: hidden;
|
|
87
|
+
line-height: 1.5;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.runtime-grid {
|
|
91
|
+
display: grid;
|
|
92
|
+
gap: 10px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.runtime-row {
|
|
96
|
+
display: grid;
|
|
97
|
+
grid-template-columns: 7rem minmax(0, 1fr);
|
|
98
|
+
gap: 10px;
|
|
99
|
+
min-width: 0;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.runtime-row span:first-child {
|
|
103
|
+
color: var(--muted);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.runtime-row strong {
|
|
107
|
+
min-width: 0;
|
|
108
|
+
overflow-wrap: anywhere;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.health-topline {
|
|
112
|
+
display: flex;
|
|
113
|
+
align-items: center;
|
|
114
|
+
justify-content: space-between;
|
|
115
|
+
gap: 10px;
|
|
116
|
+
margin-bottom: 12px;
|
|
117
|
+
color: var(--muted);
|
|
118
|
+
font-size: var(--font-size-sm);
|
|
119
|
+
font-weight: 720;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.health-pill {
|
|
123
|
+
min-width: 48px;
|
|
124
|
+
padding: 3px 8px;
|
|
125
|
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
126
|
+
border-radius: 7px;
|
|
127
|
+
background: rgba(255, 255, 255, 0.07);
|
|
128
|
+
text-align: center;
|
|
129
|
+
color: var(--text);
|
|
130
|
+
font-size: var(--font-size-sm);
|
|
131
|
+
font-weight: 780;
|
|
132
|
+
text-transform: uppercase;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.health-pill.healthy {
|
|
136
|
+
border-color: rgba(50, 215, 75, 0.2);
|
|
137
|
+
background: rgba(50, 215, 75, 0.12);
|
|
138
|
+
color: #9ef0aa;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.health-pill.failed {
|
|
142
|
+
border-color: rgba(255, 69, 58, 0.24);
|
|
143
|
+
background: rgba(255, 69, 58, 0.13);
|
|
144
|
+
color: #ffb0ab;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.health-requests {
|
|
148
|
+
display: grid;
|
|
149
|
+
gap: 8px;
|
|
150
|
+
margin-top: 13px;
|
|
151
|
+
padding-top: 13px;
|
|
152
|
+
border-top: 1px solid var(--line);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.health-request {
|
|
156
|
+
display: grid;
|
|
157
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
158
|
+
gap: 12px;
|
|
159
|
+
align-items: center;
|
|
160
|
+
padding: 8px 9px;
|
|
161
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
162
|
+
border-radius: 8px;
|
|
163
|
+
background: rgba(255, 255, 255, 0.045);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.health-request div {
|
|
167
|
+
display: grid;
|
|
168
|
+
min-width: 0;
|
|
169
|
+
gap: 3px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.health-request div:last-child {
|
|
173
|
+
justify-items: end;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.health-request strong {
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
color: var(--text-strong);
|
|
179
|
+
text-overflow: ellipsis;
|
|
180
|
+
white-space: nowrap;
|
|
181
|
+
font-size: var(--font-size-md);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.health-request span {
|
|
185
|
+
overflow: hidden;
|
|
186
|
+
color: var(--muted);
|
|
187
|
+
text-overflow: ellipsis;
|
|
188
|
+
white-space: nowrap;
|
|
189
|
+
font-size: var(--font-size-sm);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.runtime-row,
|
|
193
|
+
.health-request {
|
|
194
|
+
border-color: rgba(112, 157, 201, 0.13);
|
|
195
|
+
border-radius: 10px;
|
|
196
|
+
background: rgba(54, 94, 133, 0.08);
|
|
197
|
+
}
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.config-workspace-heading h2 {
|
|
36
|
-
font-size:
|
|
36
|
+
font-size: var(--font-size-4xl);
|
|
37
37
|
font-weight: 520;
|
|
38
38
|
letter-spacing: -0.015em;
|
|
39
39
|
}
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
border-radius: 7px;
|
|
58
58
|
background: transparent;
|
|
59
59
|
color: var(--config-muted);
|
|
60
|
-
font-size:
|
|
60
|
+
font-size: var(--font-size-md);
|
|
61
61
|
font-weight: 450;
|
|
62
62
|
box-shadow: none;
|
|
63
63
|
}
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
border-radius: 7px;
|
|
77
77
|
background: transparent;
|
|
78
78
|
color: var(--config-muted);
|
|
79
|
-
font-size:
|
|
79
|
+
font-size: var(--font-size-md);
|
|
80
80
|
font-weight: 450;
|
|
81
81
|
box-shadow: none;
|
|
82
82
|
}
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
border-radius: 0;
|
|
105
105
|
background: transparent;
|
|
106
106
|
color: var(--config-muted);
|
|
107
|
-
font-size:
|
|
107
|
+
font-size: var(--font-size-md);
|
|
108
108
|
line-height: 1.4;
|
|
109
109
|
box-shadow: none;
|
|
110
110
|
}
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
padding: 13px 16px;
|
|
145
145
|
border-right: 1px solid var(--config-line);
|
|
146
146
|
color: var(--config-faint);
|
|
147
|
-
font-size:
|
|
147
|
+
font-size: var(--font-size-xs);
|
|
148
148
|
font-weight: 450;
|
|
149
149
|
letter-spacing: 0.045em;
|
|
150
150
|
text-transform: uppercase;
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
color: var(--config-copy);
|
|
166
166
|
text-overflow: ellipsis;
|
|
167
167
|
white-space: nowrap;
|
|
168
|
-
font-size:
|
|
168
|
+
font-size: var(--font-size-lg);
|
|
169
169
|
font-weight: 480;
|
|
170
170
|
letter-spacing: 0;
|
|
171
171
|
text-transform: none;
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
color: var(--config-muted);
|
|
198
198
|
text-overflow: ellipsis;
|
|
199
199
|
white-space: nowrap;
|
|
200
|
-
font-size:
|
|
200
|
+
font-size: var(--font-size-md);
|
|
201
201
|
font-weight: 450;
|
|
202
202
|
box-shadow: none;
|
|
203
203
|
}
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
.config-section-header h4 {
|
|
286
286
|
margin: 0;
|
|
287
287
|
color: var(--text-strong);
|
|
288
|
-
font-size:
|
|
288
|
+
font-size: var(--font-size-2xl);
|
|
289
289
|
font-weight: 520;
|
|
290
290
|
line-height: 1.3;
|
|
291
291
|
}
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
color: var(--config-muted);
|
|
298
298
|
text-overflow: ellipsis;
|
|
299
299
|
white-space: nowrap;
|
|
300
|
-
font-size:
|
|
300
|
+
font-size: var(--font-size-sm);
|
|
301
301
|
line-height: 1.45;
|
|
302
302
|
}
|
|
303
303
|
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
color: var(--config-faint);
|
|
315
315
|
text-overflow: ellipsis;
|
|
316
316
|
white-space: nowrap;
|
|
317
|
-
font-size:
|
|
317
|
+
font-size: var(--font-size-xs);
|
|
318
318
|
}
|
|
319
319
|
|
|
320
320
|
.config-file-actions,
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
.config-section-actions > span,
|
|
333
333
|
.config-section-kicker {
|
|
334
334
|
color: var(--config-faint);
|
|
335
|
-
font-size:
|
|
335
|
+
font-size: var(--font-size-xs);
|
|
336
336
|
font-weight: 450;
|
|
337
337
|
}
|
|
338
338
|
|
|
@@ -356,7 +356,7 @@
|
|
|
356
356
|
border-radius: 7px;
|
|
357
357
|
background: transparent;
|
|
358
358
|
color: var(--config-muted);
|
|
359
|
-
font-size:
|
|
359
|
+
font-size: var(--font-size-md);
|
|
360
360
|
font-weight: 450;
|
|
361
361
|
box-shadow: none;
|
|
362
362
|
}
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
background-color: var(--config-control);
|
|
410
410
|
background-image: none;
|
|
411
411
|
color: var(--config-copy);
|
|
412
|
-
font-size:
|
|
412
|
+
font-size: var(--font-size-md);
|
|
413
413
|
font-weight: 400;
|
|
414
414
|
box-shadow: none;
|
|
415
415
|
}
|
|
@@ -457,7 +457,7 @@
|
|
|
457
457
|
.config-field-grid label,
|
|
458
458
|
.config-calibration-meta label {
|
|
459
459
|
color: var(--config-muted);
|
|
460
|
-
font-size:
|
|
460
|
+
font-size: var(--font-size-xs);
|
|
461
461
|
font-weight: 450;
|
|
462
462
|
}
|
|
463
463
|
|
|
@@ -489,7 +489,7 @@
|
|
|
489
489
|
padding: 0 10px;
|
|
490
490
|
border-bottom: 1px solid var(--config-line);
|
|
491
491
|
color: var(--config-faint);
|
|
492
|
-
font-size:
|
|
492
|
+
font-size: var(--font-size-xs);
|
|
493
493
|
font-weight: 450;
|
|
494
494
|
letter-spacing: 0.04em;
|
|
495
495
|
text-transform: uppercase;
|
|
@@ -529,7 +529,7 @@
|
|
|
529
529
|
.config-file-row code {
|
|
530
530
|
color: var(--config-copy);
|
|
531
531
|
font-family: var(--font-mono);
|
|
532
|
-
font-size:
|
|
532
|
+
font-size: var(--font-size-sm);
|
|
533
533
|
}
|
|
534
534
|
|
|
535
535
|
.config-profile-select-cell {
|
|
@@ -539,7 +539,7 @@
|
|
|
539
539
|
|
|
540
540
|
.config-profile-select-cell small {
|
|
541
541
|
color: var(--config-faint);
|
|
542
|
-
font-size:
|
|
542
|
+
font-size: var(--font-size-xs);
|
|
543
543
|
}
|
|
544
544
|
|
|
545
545
|
.config-files-section .config-file-row {
|
|
@@ -551,7 +551,7 @@
|
|
|
551
551
|
color: var(--config-faint);
|
|
552
552
|
text-overflow: ellipsis;
|
|
553
553
|
white-space: nowrap;
|
|
554
|
-
font-size:
|
|
554
|
+
font-size: var(--font-size-xs);
|
|
555
555
|
}
|
|
556
556
|
|
|
557
557
|
.config-add-row {
|
|
@@ -581,13 +581,13 @@
|
|
|
581
581
|
|
|
582
582
|
.config-add-copy strong {
|
|
583
583
|
color: var(--config-copy);
|
|
584
|
-
font-size:
|
|
584
|
+
font-size: var(--font-size-md);
|
|
585
585
|
font-weight: 500;
|
|
586
586
|
}
|
|
587
587
|
|
|
588
588
|
.config-add-copy span {
|
|
589
589
|
color: var(--config-faint);
|
|
590
|
-
font-size:
|
|
590
|
+
font-size: var(--font-size-xs);
|
|
591
591
|
line-height: 1.4;
|
|
592
592
|
}
|
|
593
593
|
|
|
@@ -627,7 +627,7 @@
|
|
|
627
627
|
padding: 0 12px 0 8px;
|
|
628
628
|
border-bottom: 1px solid var(--config-line);
|
|
629
629
|
color: var(--config-faint);
|
|
630
|
-
font-size:
|
|
630
|
+
font-size: var(--font-size-xs);
|
|
631
631
|
font-weight: 450;
|
|
632
632
|
letter-spacing: 0.04em;
|
|
633
633
|
text-transform: uppercase;
|
|
@@ -677,7 +677,7 @@
|
|
|
677
677
|
|
|
678
678
|
.config-model-button > span {
|
|
679
679
|
color: var(--config-copy);
|
|
680
|
-
font-size:
|
|
680
|
+
font-size: var(--font-size-md);
|
|
681
681
|
font-weight: 480;
|
|
682
682
|
}
|
|
683
683
|
|
|
@@ -685,7 +685,7 @@
|
|
|
685
685
|
display: flex;
|
|
686
686
|
gap: 7px;
|
|
687
687
|
color: var(--config-faint);
|
|
688
|
-
font-size:
|
|
688
|
+
font-size: var(--font-size-xs);
|
|
689
689
|
}
|
|
690
690
|
|
|
691
691
|
.config-model-editor {
|
|
@@ -722,7 +722,7 @@
|
|
|
722
722
|
|
|
723
723
|
.config-execution-route > label > span {
|
|
724
724
|
color: var(--config-muted);
|
|
725
|
-
font-size:
|
|
725
|
+
font-size: var(--font-size-xs);
|
|
726
726
|
font-weight: 450;
|
|
727
727
|
}
|
|
728
728
|
|
|
@@ -741,14 +741,14 @@
|
|
|
741
741
|
|
|
742
742
|
.config-execution-route-copy strong {
|
|
743
743
|
color: var(--config-copy);
|
|
744
|
-
font-size:
|
|
744
|
+
font-size: var(--font-size-sm);
|
|
745
745
|
font-weight: 500;
|
|
746
746
|
}
|
|
747
747
|
|
|
748
748
|
.config-execution-route-copy p {
|
|
749
749
|
max-width: 680px;
|
|
750
750
|
color: var(--config-faint);
|
|
751
|
-
font-size:
|
|
751
|
+
font-size: var(--font-size-xs);
|
|
752
752
|
line-height: 1.45;
|
|
753
753
|
}
|
|
754
754
|
|
|
@@ -764,7 +764,7 @@
|
|
|
764
764
|
.config-form-panel-title strong,
|
|
765
765
|
.config-subheader > div:first-child > span {
|
|
766
766
|
color: var(--config-copy);
|
|
767
|
-
font-size:
|
|
767
|
+
font-size: var(--font-size-md);
|
|
768
768
|
font-weight: 500;
|
|
769
769
|
}
|
|
770
770
|
|
|
@@ -774,7 +774,7 @@
|
|
|
774
774
|
color: var(--config-faint);
|
|
775
775
|
text-overflow: ellipsis;
|
|
776
776
|
white-space: nowrap;
|
|
777
|
-
font-size:
|
|
777
|
+
font-size: var(--font-size-xs);
|
|
778
778
|
}
|
|
779
779
|
|
|
780
780
|
.config-field-grid {
|
|
@@ -867,7 +867,7 @@
|
|
|
867
867
|
|
|
868
868
|
.config-calibration-title strong {
|
|
869
869
|
color: var(--config-copy);
|
|
870
|
-
font-size:
|
|
870
|
+
font-size: var(--font-size-md);
|
|
871
871
|
font-weight: 500;
|
|
872
872
|
}
|
|
873
873
|
|
|
@@ -875,7 +875,7 @@
|
|
|
875
875
|
.config-calibration-title small,
|
|
876
876
|
.config-calibration-title code {
|
|
877
877
|
color: var(--config-faint);
|
|
878
|
-
font-size:
|
|
878
|
+
font-size: var(--font-size-xs);
|
|
879
879
|
}
|
|
880
880
|
|
|
881
881
|
.config-calibration-title code {
|
|
@@ -914,13 +914,13 @@
|
|
|
914
914
|
|
|
915
915
|
.config-readonly-field strong {
|
|
916
916
|
color: var(--config-copy);
|
|
917
|
-
font-size:
|
|
917
|
+
font-size: var(--font-size-sm);
|
|
918
918
|
font-weight: 500;
|
|
919
919
|
}
|
|
920
920
|
|
|
921
921
|
.config-readonly-field small {
|
|
922
922
|
color: var(--config-faint);
|
|
923
|
-
font-size:
|
|
923
|
+
font-size: var(--font-size-xs);
|
|
924
924
|
}
|
|
925
925
|
|
|
926
926
|
.config-files-section .config-file-list {
|
|
@@ -941,7 +941,7 @@
|
|
|
941
941
|
.config-raw-panel > summary {
|
|
942
942
|
cursor: pointer;
|
|
943
943
|
color: var(--config-muted);
|
|
944
|
-
font-size:
|
|
944
|
+
font-size: var(--font-size-md);
|
|
945
945
|
font-weight: 480;
|
|
946
946
|
list-style-position: inside;
|
|
947
947
|
}
|
|
@@ -967,7 +967,7 @@
|
|
|
967
967
|
|
|
968
968
|
.config-raw-file-select > span {
|
|
969
969
|
color: var(--config-muted);
|
|
970
|
-
font-size:
|
|
970
|
+
font-size: var(--font-size-xs);
|
|
971
971
|
font-weight: 450;
|
|
972
972
|
}
|
|
973
973
|
|
|
@@ -975,7 +975,7 @@
|
|
|
975
975
|
.config-dashboard .config-view {
|
|
976
976
|
min-height: 380px;
|
|
977
977
|
font-family: var(--font-mono);
|
|
978
|
-
font-size:
|
|
978
|
+
font-size: var(--font-size-sm);
|
|
979
979
|
line-height: 1.55;
|
|
980
980
|
resize: vertical;
|
|
981
981
|
white-space: pre;
|
|
@@ -984,7 +984,7 @@
|
|
|
984
984
|
.config-dashboard .empty-state {
|
|
985
985
|
padding: 22px 0;
|
|
986
986
|
color: var(--config-muted);
|
|
987
|
-
font-size:
|
|
987
|
+
font-size: var(--font-size-md);
|
|
988
988
|
}
|
|
989
989
|
|
|
990
990
|
.config-dashboard .error-text {
|