feat(foundry): add managed data consumers and agent settings
This commit is contained in:
+122
-1
@@ -1073,6 +1073,120 @@ textarea {
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__header {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__header > div {
|
||||
display: grid;
|
||||
gap: 0.28rem;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__header span,
|
||||
.catalog-codex-agent-settings__header h2,
|
||||
.catalog-codex-agent-settings__lead {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__header > div > span {
|
||||
color: var(--nodedc-text-muted);
|
||||
font-size: 0.68rem;
|
||||
font-weight: 850;
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__header h2 {
|
||||
font-size: clamp(1.45rem, 2.2vw, 2rem);
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__lead {
|
||||
max-width: 58rem;
|
||||
color: var(--nodedc-text-secondary);
|
||||
font-size: 0.88rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__message {
|
||||
border-radius: var(--nodedc-radius-control-compact);
|
||||
background: rgb(var(--nodedc-success-rgb) / 0.12);
|
||||
color: color-mix(in srgb, rgb(var(--nodedc-success-rgb)) 80%, var(--nodedc-text-primary));
|
||||
padding: 0.75rem 0.9rem;
|
||||
font-size: var(--nodedc-font-size-sm);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__message[data-tone="error"] {
|
||||
background: rgb(var(--nodedc-danger-rgb) / 0.12);
|
||||
color: color-mix(in srgb, rgb(var(--nodedc-danger-rgb)) 80%, var(--nodedc-text-primary));
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__create,
|
||||
.catalog-codex-agent-settings__agent-grid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
align-items: end;
|
||||
gap: 0.8rem;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__agents {
|
||||
display: grid;
|
||||
gap: 0.8rem;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__empty {
|
||||
color: var(--nodedc-text-muted);
|
||||
padding: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
gap: 0.45rem;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__setup {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
gap: 0.7rem;
|
||||
margin-top: 0.9rem;
|
||||
border-radius: var(--nodedc-radius-control);
|
||||
background: var(--nodedc-nested-bg);
|
||||
padding: 0.85rem;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__setup > div {
|
||||
display: grid;
|
||||
gap: 0.2rem;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__setup small {
|
||||
color: var(--nodedc-text-muted);
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__setup code {
|
||||
grid-column: 1 / -1;
|
||||
overflow: auto;
|
||||
border-radius: var(--nodedc-radius-control-compact);
|
||||
background: var(--nodedc-field-bg);
|
||||
color: var(--nodedc-text-primary);
|
||||
padding: 0.8rem;
|
||||
font-size: 0.75rem;
|
||||
line-height: 1.5;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.catalog-modal-groups {
|
||||
display: grid;
|
||||
gap: 1.25rem;
|
||||
@@ -1363,10 +1477,17 @@ textarea {
|
||||
}
|
||||
|
||||
.catalog-application-draft__fields,
|
||||
.catalog-application-draft__features {
|
||||
.catalog-application-draft__features,
|
||||
.catalog-codex-agent-settings__create,
|
||||
.catalog-codex-agent-settings__agent-grid,
|
||||
.catalog-codex-agent-settings__setup {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.catalog-codex-agent-settings__actions {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.catalog-application-draft__fields .nodedc-field-frame:last-child {
|
||||
grid-column: auto;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user