1739 lines
27 KiB
CSS
1739 lines
27 KiB
CSS
.platform-shell {
|
|
display: grid;
|
|
min-height: 100vh;
|
|
grid-template-columns: 248px minmax(0, 1fr);
|
|
background: #eef3f8;
|
|
}
|
|
|
|
.platform-sidebar {
|
|
position: sticky;
|
|
top: 0;
|
|
display: flex;
|
|
height: 100vh;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
border-right: 1px solid #d8e1eb;
|
|
background: #f8fafc;
|
|
padding: 18px 14px;
|
|
}
|
|
|
|
.platform-sidebar[data-collapsed="true"] {
|
|
width: 72px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.platform-main {
|
|
display: grid;
|
|
min-width: 0;
|
|
grid-template-rows: 58px minmax(0, 1fr);
|
|
}
|
|
|
|
.platform-topbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
border-bottom: 1px solid #d8e1eb;
|
|
background: rgba(248, 250, 252, 0.92);
|
|
padding: 0 18px;
|
|
}
|
|
|
|
.platform-content {
|
|
min-width: 0;
|
|
padding: 22px;
|
|
}
|
|
|
|
.brand-lockup {
|
|
display: flex;
|
|
min-width: 0;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.brand-lockup.centered {
|
|
justify-content: center;
|
|
}
|
|
|
|
.brand-mark {
|
|
display: inline-flex;
|
|
width: 36px;
|
|
height: 36px;
|
|
flex: 0 0 auto;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 8px;
|
|
background: #111827;
|
|
color: #67e8f9;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 13px;
|
|
font-weight: 850;
|
|
}
|
|
|
|
.brand-lockup strong,
|
|
.brand-lockup small {
|
|
display: block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.brand-lockup small,
|
|
.topbar-status span {
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.nav-groups,
|
|
.nav-section,
|
|
.route-stack,
|
|
.workbench-route {
|
|
display: grid;
|
|
gap: 16px;
|
|
}
|
|
|
|
.nav-section h2 {
|
|
margin: 0 0 4px;
|
|
color: #94a3b8;
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
letter-spacing: 0;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.nav-item {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
gap: 10px;
|
|
border: 0;
|
|
border-radius: 8px;
|
|
background: transparent;
|
|
padding: 9px 10px;
|
|
color: #334155;
|
|
text-align: left;
|
|
}
|
|
|
|
.nav-item[data-active="true"] {
|
|
background: #e0f2fe;
|
|
color: #0c4a6e;
|
|
font-weight: 750;
|
|
}
|
|
|
|
.nav-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
flex: 0 0 auto;
|
|
border-radius: 999px;
|
|
background: #94a3b8;
|
|
}
|
|
|
|
.nav-item[data-active="true"] .nav-dot {
|
|
background: #0891b2;
|
|
}
|
|
|
|
.topbar-status {
|
|
display: flex;
|
|
min-width: 0;
|
|
flex: 1;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.auth-main,
|
|
.login-shell {
|
|
display: grid;
|
|
min-height: 100vh;
|
|
place-items: center;
|
|
background: #eef3f8;
|
|
padding: 20px;
|
|
}
|
|
|
|
.login-card {
|
|
display: grid;
|
|
width: min(420px, 100%);
|
|
gap: 14px;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: white;
|
|
padding: 22px;
|
|
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
|
|
}
|
|
|
|
.register-card {
|
|
width: min(520px, 100%);
|
|
}
|
|
|
|
.auth-link {
|
|
color: #0e7490;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.login-card label,
|
|
.settings-grid label {
|
|
display: grid;
|
|
gap: 6px;
|
|
color: #475569;
|
|
font-size: 13px;
|
|
font-weight: 650;
|
|
}
|
|
|
|
.login-note,
|
|
.form-error {
|
|
margin: 0;
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.form-error {
|
|
color: #b91c1c;
|
|
}
|
|
|
|
.workbench-status-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 10px;
|
|
color: #475569;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.workbench-live-strip {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: stretch;
|
|
gap: 10px;
|
|
}
|
|
|
|
.probe-card,
|
|
.live-build-summary {
|
|
min-width: min(320px, 100%);
|
|
flex: 1 1 320px;
|
|
}
|
|
|
|
.status-chip-button {
|
|
display: flex;
|
|
width: 100%;
|
|
min-height: 42px;
|
|
min-width: 0;
|
|
align-items: center;
|
|
gap: 8px;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: white;
|
|
padding: 8px 10px;
|
|
color: #334155;
|
|
text-align: left;
|
|
}
|
|
|
|
.status-chip-label,
|
|
.status-chip-meta {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.status-chip-label {
|
|
color: #0f172a;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.status-chip-meta {
|
|
margin-left: auto;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.workbench-dialog-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 80;
|
|
display: grid;
|
|
place-items: center;
|
|
background: rgba(15, 23, 42, 0.34);
|
|
padding: 18px;
|
|
}
|
|
|
|
.workbench-dialog {
|
|
display: grid;
|
|
width: min(720px, 100%);
|
|
max-height: min(760px, calc(100vh - 36px));
|
|
gap: 12px;
|
|
overflow: auto;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: white;
|
|
padding: 16px;
|
|
box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
|
|
}
|
|
|
|
.workbench-dialog.wide {
|
|
width: min(920px, 100%);
|
|
}
|
|
|
|
.workbench-dialog header,
|
|
.hwpod-event-panel header {
|
|
display: flex;
|
|
min-width: 0;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.dialog-close {
|
|
width: 30px;
|
|
height: 30px;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
color: #334155;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.dialog-title-stack {
|
|
display: grid;
|
|
min-width: 0;
|
|
gap: 3px;
|
|
}
|
|
|
|
.dialog-title-stack h2,
|
|
.dialog-title-stack p {
|
|
margin: 0;
|
|
}
|
|
|
|
.dialog-title-stack p {
|
|
color: #64748b;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.dialog-footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
}
|
|
|
|
.probe-list,
|
|
.live-build-list,
|
|
.hwpod-errors ul {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.probe-row,
|
|
.live-build-row,
|
|
.hwpod-errors {
|
|
display: grid;
|
|
gap: 8px;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 10px;
|
|
}
|
|
|
|
.probe-row-head,
|
|
.live-build-row-head {
|
|
display: flex;
|
|
min-width: 0;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
|
|
.probe-row-label,
|
|
.live-build-row strong {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.probe-row-meta,
|
|
.live-build-meta {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.probe-row p,
|
|
.live-build-dialog-summary p,
|
|
.live-build-reason {
|
|
margin: 0;
|
|
color: #475569;
|
|
font-size: 12px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.workbench-grid {
|
|
display: grid;
|
|
min-height: calc(100vh - 180px);
|
|
grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) minmax(280px, 360px);
|
|
gap: 14px;
|
|
}
|
|
|
|
.workbench-center,
|
|
.session-rail,
|
|
.hwpod-panel,
|
|
.data-panel,
|
|
.empty-state,
|
|
.metric-card,
|
|
.message-card {
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: white;
|
|
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
|
|
}
|
|
|
|
.workbench-center {
|
|
display: grid;
|
|
min-width: 0;
|
|
grid-template-rows: minmax(0, 1fr) auto;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.session-rail,
|
|
.hwpod-panel {
|
|
position: relative;
|
|
display: grid;
|
|
min-width: 0;
|
|
align-content: start;
|
|
gap: 12px;
|
|
padding: 14px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.panel-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.panel-header h2 {
|
|
margin: 0;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.session-list,
|
|
.conversation-panel {
|
|
display: grid;
|
|
gap: 10px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.session-tab {
|
|
display: grid;
|
|
width: 100%;
|
|
gap: 4px;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 10px;
|
|
color: #334155;
|
|
text-align: left;
|
|
}
|
|
|
|
.session-tab[data-active="true"] {
|
|
border-color: #38bdf8;
|
|
background: #f0f9ff;
|
|
}
|
|
|
|
.session-tab strong,
|
|
.session-tab span,
|
|
.session-tab small {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.session-tab span,
|
|
.session-tab small,
|
|
.muted-box {
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.muted-box,
|
|
.empty-state {
|
|
padding: 14px;
|
|
}
|
|
|
|
.conversation-panel {
|
|
padding: 14px;
|
|
}
|
|
|
|
.message-card {
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.message-card[data-role="user"] {
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.message-card header,
|
|
.trace-timeline header {
|
|
display: flex;
|
|
min-width: 0;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.message-text,
|
|
.message-markdown {
|
|
margin: 0;
|
|
color: #1f2937;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
.message-markdown {
|
|
display: grid;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.message-markdown > * {
|
|
margin: 0;
|
|
}
|
|
|
|
.message-markdown ul,
|
|
.message-markdown ol {
|
|
display: grid;
|
|
gap: 4px;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.message-markdown pre,
|
|
.message-markdown code {
|
|
border-radius: 6px;
|
|
background: #0f172a;
|
|
color: #dbeafe;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.message-markdown pre {
|
|
max-width: 100%;
|
|
overflow: auto;
|
|
padding: 10px;
|
|
}
|
|
|
|
.message-markdown code {
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
.message-markdown pre code {
|
|
padding: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.message-markdown a {
|
|
color: #0e7490;
|
|
font-weight: 700;
|
|
text-decoration: underline;
|
|
text-underline-offset: 2px;
|
|
}
|
|
|
|
.trace-timeline {
|
|
display: grid;
|
|
gap: 8px;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 10px;
|
|
}
|
|
|
|
.trace-toolbar {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.trace-toolbar strong,
|
|
.trace-id {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.trace-id {
|
|
max-width: 220px;
|
|
color: #475569;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.trace-toggle {
|
|
min-height: 28px;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
background: white;
|
|
color: #334155;
|
|
padding: 0 9px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.trace-warning,
|
|
.trace-empty {
|
|
margin: 0;
|
|
border-radius: 8px;
|
|
padding: 8px 10px;
|
|
font-size: 12px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.trace-warning {
|
|
border: 1px solid #fde68a;
|
|
background: #fffbeb;
|
|
color: #92400e;
|
|
}
|
|
|
|
.trace-empty {
|
|
border: 1px solid #d8e1eb;
|
|
background: white;
|
|
color: #64748b;
|
|
}
|
|
|
|
.trace-timeline ol {
|
|
display: grid;
|
|
max-height: 170px;
|
|
gap: 6px;
|
|
margin: 0;
|
|
overflow: auto;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.trace-timeline li {
|
|
display: grid;
|
|
grid-template-columns: minmax(96px, 160px) minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
color: #475569;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.trace-timeline li span,
|
|
.trace-timeline li small {
|
|
min-width: 0;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.message-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 8px;
|
|
border-top: 1px solid #e2e8f0;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.message-actions a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.message-action-status {
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.code-agent-status-summary {
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.code-agent-status-summary summary {
|
|
display: flex;
|
|
cursor: pointer;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
padding: 9px 10px;
|
|
color: #334155;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.code-agent-status-summary dl {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0;
|
|
margin: 0;
|
|
border-top: 1px solid #d8e1eb;
|
|
}
|
|
|
|
.code-agent-status-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
|
|
gap: 8px;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
padding: 7px 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.code-agent-status-row dt,
|
|
.code-agent-status-row dd {
|
|
min-width: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.code-agent-status-row dt {
|
|
color: #64748b;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.code-agent-status-row dd {
|
|
overflow-wrap: anywhere;
|
|
color: #1f2937;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
|
|
.trace-timeline code,
|
|
.mini-log,
|
|
.json-panel,
|
|
.help-body {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.command-composer {
|
|
display: grid;
|
|
gap: 10px;
|
|
border-top: 1px solid #d8e1eb;
|
|
padding: 12px;
|
|
}
|
|
|
|
.composer-toolbar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: end;
|
|
gap: 8px;
|
|
}
|
|
|
|
.composer-field {
|
|
display: grid;
|
|
min-width: min(260px, 100%);
|
|
gap: 4px;
|
|
color: #475569;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.composer-field select {
|
|
min-height: 34px;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
background: white;
|
|
padding: 0 10px;
|
|
color: #0f172a;
|
|
}
|
|
|
|
.command-composer textarea {
|
|
width: 100%;
|
|
min-height: 84px;
|
|
resize: vertical;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.composer-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
}
|
|
|
|
.composer-warning {
|
|
margin-right: auto;
|
|
color: #b45309;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.composer-mode {
|
|
margin-right: auto;
|
|
color: #0e7490;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.composer-mode[data-mode="steer"] {
|
|
color: #7c2d12;
|
|
}
|
|
|
|
.drafts-list {
|
|
display: grid;
|
|
gap: 8px;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 10px;
|
|
}
|
|
|
|
.drafts-list-head,
|
|
.session-rail-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
|
|
.drafts-list-items {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.draft-chip {
|
|
max-width: 100%;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
background: white;
|
|
padding: 6px 8px;
|
|
color: #334155;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
}
|
|
|
|
.session-model-channel,
|
|
.session-active-metadata {
|
|
display: grid;
|
|
gap: 3px;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 8px;
|
|
color: #475569;
|
|
font-size: 12px;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.session-active-metadata span {
|
|
color: #0f172a;
|
|
font-weight: 750;
|
|
}
|
|
|
|
.session-active-metadata small {
|
|
color: #64748b;
|
|
}
|
|
|
|
.session-resize-handle {
|
|
position: absolute;
|
|
top: 0;
|
|
right: -7px;
|
|
width: 12px;
|
|
height: 100%;
|
|
cursor: col-resize;
|
|
}
|
|
|
|
.session-resize-handle:focus-visible {
|
|
outline: 2px solid #0891b2;
|
|
outline-offset: -2px;
|
|
}
|
|
|
|
.session-rail.is-resizing {
|
|
user-select: none;
|
|
}
|
|
|
|
.evidence-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 6px;
|
|
}
|
|
|
|
.evidence-grid span {
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 7px 8px;
|
|
color: #334155;
|
|
font-size: 11px;
|
|
font-weight: 750;
|
|
}
|
|
|
|
.hwpod-node-status,
|
|
.hwpod-event-panel {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.hwpod-node-summary {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 8px;
|
|
}
|
|
|
|
.summary-tile {
|
|
display: grid;
|
|
min-width: 0;
|
|
gap: 4px;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 9px;
|
|
color: #334155;
|
|
text-align: left;
|
|
}
|
|
|
|
.summary-tile span,
|
|
.summary-tile strong {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.summary-tile span {
|
|
color: #64748b;
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.summary-tile strong {
|
|
color: #0f172a;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.hwpod-node-meta {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0;
|
|
margin: 0;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hwpod-node-meta div {
|
|
display: grid;
|
|
gap: 3px;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
padding: 7px 8px;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.hwpod-node-meta dt,
|
|
.hwpod-node-meta dd {
|
|
min-width: 0;
|
|
margin: 0;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.hwpod-node-meta dt {
|
|
color: #64748b;
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.hwpod-node-meta dd {
|
|
color: #0f172a;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.hwpod-errors li {
|
|
display: grid;
|
|
gap: 4px;
|
|
color: #475569;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.hwpod-errors code {
|
|
color: #991b1b;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.hwpod-event-panel header button {
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
background: white;
|
|
color: #334155;
|
|
padding: 5px 8px;
|
|
font-size: 12px;
|
|
font-weight: 750;
|
|
}
|
|
|
|
.hwpod-event-panel header div {
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.hwpod-event-scroll {
|
|
max-height: 210px;
|
|
overflow: auto;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: #0f172a;
|
|
color: #dbeafe;
|
|
}
|
|
|
|
.hwpod-event-scroll pre,
|
|
#hwpod-detail-body {
|
|
margin: 0;
|
|
padding: 12px;
|
|
white-space: pre-wrap;
|
|
overflow-wrap: anywhere;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.mini-log,
|
|
.json-panel,
|
|
.help-body {
|
|
max-height: 420px;
|
|
overflow: auto;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: #0f172a;
|
|
color: #dbeafe;
|
|
padding: 12px;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.empty-state {
|
|
display: grid;
|
|
justify-items: start;
|
|
gap: 8px;
|
|
}
|
|
|
|
.empty-state h2,
|
|
.empty-state p {
|
|
margin: 0;
|
|
}
|
|
|
|
.empty-state-mark {
|
|
display: inline-flex;
|
|
width: 34px;
|
|
height: 34px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 8px;
|
|
background: #e0f2fe;
|
|
color: #075985;
|
|
font-weight: 850;
|
|
}
|
|
|
|
.overview-grid,
|
|
.settings-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.metric-card {
|
|
display: grid;
|
|
gap: 6px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.metric-card span {
|
|
color: #64748b;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.usage-metrics .metric-card strong {
|
|
color: #0f172a;
|
|
font-size: 28px;
|
|
line-height: 1.15;
|
|
}
|
|
|
|
.usage-panels {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.usage-panel {
|
|
display: grid;
|
|
min-width: 0;
|
|
gap: 12px;
|
|
padding: 14px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.admin-crud-panel,
|
|
.table-page-layout {
|
|
display: grid;
|
|
min-width: 0;
|
|
gap: 12px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.table-page-layout {
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: white;
|
|
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
|
|
}
|
|
|
|
.table-page-header small,
|
|
.panel-header small {
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.table-page-actions,
|
|
.table-actions-inline,
|
|
.table-pagination,
|
|
.table-pagination div {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.table-pagination {
|
|
justify-content: space-between;
|
|
color: #64748b;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.data-table-wrap {
|
|
min-width: 0;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.data-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background: white;
|
|
}
|
|
|
|
.data-table th,
|
|
.data-table td {
|
|
border-bottom: 1px solid #e2e8f0;
|
|
padding: 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
.data-table th[data-align="right"],
|
|
.data-table td[data-align="right"] {
|
|
text-align: right;
|
|
}
|
|
|
|
.crud-table td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.crud-table small,
|
|
.provider-admin-page small,
|
|
.access-admin-page small {
|
|
display: block;
|
|
margin-top: 3px;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.link-button {
|
|
display: grid;
|
|
width: 100%;
|
|
min-width: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
color: #0f172a;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.link-button[data-selected="true"] strong {
|
|
color: #0f766e;
|
|
}
|
|
|
|
.usage-table th,
|
|
.usage-table td {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.usage-table code {
|
|
color: #0f766e;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.admin-billing-panel {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.admin-billing-table td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.admin-billing-table td > strong,
|
|
.admin-billing-table td > small {
|
|
display: block;
|
|
}
|
|
|
|
.admin-billing-table td > small {
|
|
margin-top: 3px;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.admin-action-error {
|
|
margin: 0;
|
|
}
|
|
|
|
.inline-form-row,
|
|
.inline-edit-row,
|
|
.admin-users-filters,
|
|
.pagination-row {
|
|
display: flex;
|
|
min-width: 0;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.inline-form-row .input,
|
|
.admin-users-filters .input {
|
|
min-width: 180px;
|
|
flex: 1;
|
|
}
|
|
|
|
.secret-once-box,
|
|
.detail-subpanel {
|
|
display: grid;
|
|
min-width: 0;
|
|
gap: 10px;
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 12px;
|
|
}
|
|
|
|
.secret-once-box code {
|
|
overflow-wrap: anywhere;
|
|
color: #0f766e;
|
|
}
|
|
|
|
.admin-users-layout,
|
|
.admin-detail-grid {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.85fr);
|
|
gap: 12px;
|
|
}
|
|
|
|
.admin-users-list-panel,
|
|
.admin-user-create-panel,
|
|
.admin-user-detail-panel,
|
|
.admin-users-toolbar {
|
|
display: grid;
|
|
min-width: 0;
|
|
gap: 12px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.form-grid {
|
|
display: grid;
|
|
min-width: 0;
|
|
gap: 10px;
|
|
}
|
|
|
|
.form-grid.two-col {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.form-grid label {
|
|
display: grid;
|
|
gap: 6px;
|
|
color: #475569;
|
|
font-size: 13px;
|
|
font-weight: 650;
|
|
}
|
|
|
|
.span-2 {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.admin-billing-table tr[data-selected="true"] td {
|
|
background: #f0fdfa;
|
|
}
|
|
|
|
.table-action {
|
|
min-width: 64px;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
color: #0f172a;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
font-weight: 750;
|
|
padding: 7px 10px;
|
|
}
|
|
|
|
.table-action:hover:not(:disabled) {
|
|
border-color: #0891b2;
|
|
color: #0c4a6e;
|
|
}
|
|
|
|
.table-action.danger:hover:not(:disabled) {
|
|
border-color: #ef4444;
|
|
color: #991b1b;
|
|
}
|
|
|
|
.table-action:disabled {
|
|
cursor: wait;
|
|
opacity: 0.55;
|
|
}
|
|
|
|
.status-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 999px;
|
|
padding: 3px 8px;
|
|
background: #f8fafc;
|
|
color: #334155;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.status-pill[data-status="active"] {
|
|
border-color: #99f6e4;
|
|
background: #ccfbf1;
|
|
color: #0f766e;
|
|
}
|
|
|
|
.status-pill[data-status="disabled"] {
|
|
border-color: #fecaca;
|
|
background: #fee2e2;
|
|
color: #991b1b;
|
|
}
|
|
|
|
.status-pill[data-status="admin"],
|
|
.status-pill[data-status="completed"],
|
|
.status-pill[data-status="ready"] {
|
|
border-color: #bbf7d0;
|
|
background: #dcfce7;
|
|
color: #166534;
|
|
}
|
|
|
|
.status-pill[data-status="failed"],
|
|
.status-pill[data-status="blocked"],
|
|
.status-pill[data-status="error"] {
|
|
border-color: #fecaca;
|
|
background: #fee2e2;
|
|
color: #991b1b;
|
|
}
|
|
|
|
.field-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 10px;
|
|
margin: 0;
|
|
}
|
|
|
|
.field-grid div {
|
|
min-width: 0;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 10px;
|
|
}
|
|
|
|
.field-grid dt,
|
|
.field-grid dd {
|
|
min-width: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.field-grid dt {
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.field-grid dd {
|
|
overflow-wrap: anywhere;
|
|
color: #0f172a;
|
|
font-size: 13px;
|
|
font-weight: 750;
|
|
}
|
|
|
|
.form-grid,
|
|
.admin-form {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.compact-form-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.form-grid label,
|
|
.admin-form label {
|
|
display: grid;
|
|
gap: 6px;
|
|
color: #475569;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.form-grid select,
|
|
.admin-form input,
|
|
.admin-form textarea {
|
|
min-width: 0;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
background: white;
|
|
color: #0f172a;
|
|
font: inherit;
|
|
padding: 9px 10px;
|
|
}
|
|
|
|
.admin-form textarea {
|
|
resize: vertical;
|
|
font-family: "SFMono-Regular", Consolas, monospace;
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.form-notice {
|
|
margin: 0;
|
|
color: #0f766e;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.access-user-head,
|
|
.tool-toggle-grid,
|
|
.tuple-list,
|
|
.provider-validation-panel {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.tool-toggle-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 10px;
|
|
}
|
|
|
|
.tool-toggle-row input {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.tuple-list h3 {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.tuple-list ul {
|
|
display: grid;
|
|
gap: 6px;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.tuple-list li {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 1.3fr);
|
|
gap: 8px;
|
|
align-items: center;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.tuple-list code,
|
|
.provider-admin-page code {
|
|
overflow-wrap: anywhere;
|
|
color: #0f766e;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.toast-host {
|
|
position: fixed;
|
|
right: 16px;
|
|
bottom: 16px;
|
|
z-index: 50;
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.toast-item {
|
|
max-width: min(380px, calc(100vw - 32px));
|
|
border: 1px solid #d8e1eb;
|
|
border-radius: 8px;
|
|
background: white;
|
|
padding: 10px 12px;
|
|
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
|
|
text-align: left;
|
|
}
|
|
|
|
.system-page .data-table td small,
|
|
.provider-admin-page .data-table td small {
|
|
display: block;
|
|
margin-top: 3px;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.system-summary-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.system-summary-grid .metric-card {
|
|
display: grid;
|
|
gap: 5px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.system-summary-grid .metric-card span,
|
|
.rum-bar-row span,
|
|
.skill-tree-list small {
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.system-summary-grid .metric-card strong {
|
|
min-width: 0;
|
|
overflow-wrap: anywhere;
|
|
color: #0f172a;
|
|
font-size: 20px;
|
|
line-height: 1.15;
|
|
}
|
|
|
|
.system-summary-grid .metric-card small {
|
|
min-width: 0;
|
|
overflow-wrap: anywhere;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.system-filter-bar {
|
|
display: grid;
|
|
grid-template-columns: minmax(140px, 220px) minmax(240px, 1fr);
|
|
gap: 10px;
|
|
}
|
|
|
|
.system-filter-bar label {
|
|
display: grid;
|
|
gap: 5px;
|
|
color: #475569;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.system-filter-bar select,
|
|
.system-filter-bar input {
|
|
min-height: 36px;
|
|
min-width: 0;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
background: white;
|
|
padding: 7px 10px;
|
|
}
|
|
|
|
.system-row-detail {
|
|
display: -webkit-box;
|
|
max-width: 520px;
|
|
overflow: hidden;
|
|
-webkit-line-clamp: 3;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.system-drilldown {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.system-drilldown h3,
|
|
.system-drilldown p {
|
|
margin: 0;
|
|
}
|
|
|
|
.system-drilldown h3 {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.system-drilldown ul,
|
|
.skill-tree-list {
|
|
display: grid;
|
|
gap: 6px;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.system-drilldown li,
|
|
.skill-tree-list li {
|
|
min-width: 0;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
background: #f8fafc;
|
|
padding: 8px;
|
|
}
|
|
|
|
.rum-chart-panel {
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.rum-bar-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(100px, 160px) minmax(0, 1fr) 48px;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.rum-bar-row div {
|
|
height: 10px;
|
|
overflow: hidden;
|
|
border-radius: 999px;
|
|
background: #e2e8f0;
|
|
}
|
|
|
|
.rum-bar-row i {
|
|
display: block;
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
background: #0e7490;
|
|
}
|
|
|
|
.rum-bar-row strong {
|
|
text-align: right;
|
|
}
|
|
|
|
.system-split-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 14px;
|
|
}
|
|
|
|
.skills-tree-panel,
|
|
.skills-preview-panel {
|
|
display: grid;
|
|
align-content: start;
|
|
gap: 12px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.skill-tree-list {
|
|
max-height: 420px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.skill-tree-list li {
|
|
display: grid;
|
|
grid-template-columns: 48px minmax(0, 1fr) auto;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.skill-tree-list button {
|
|
min-height: 26px;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 8px;
|
|
background: white;
|
|
color: #334155;
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.skill-tree-list button:disabled {
|
|
color: #94a3b8;
|
|
}
|
|
|
|
.skill-tree-list span {
|
|
min-width: 0;
|
|
overflow-wrap: anywhere;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.skills-preview-panel .mini-log {
|
|
max-height: 460px;
|
|
min-height: 240px;
|
|
overflow: auto;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
@media (max-width: 1180px) {
|
|
.platform-shell {
|
|
grid-template-columns: 76px minmax(0, 1fr);
|
|
}
|
|
|
|
.platform-sidebar {
|
|
padding: 14px 8px;
|
|
}
|
|
|
|
.platform-sidebar .brand-lockup div,
|
|
.nav-section h2,
|
|
.nav-item span:not(.nav-dot) {
|
|
display: none;
|
|
}
|
|
|
|
.workbench-grid,
|
|
.overview-grid,
|
|
.settings-grid,
|
|
.usage-panels,
|
|
.admin-users-layout,
|
|
.admin-detail-grid,
|
|
.system-summary-grid,
|
|
.system-split-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.field-grid,
|
|
.form-grid.two-col,
|
|
.compact-form-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.platform-shell {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.platform-sidebar {
|
|
position: static;
|
|
height: auto;
|
|
}
|
|
|
|
.nav-groups {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.platform-content {
|
|
padding: 14px;
|
|
}
|
|
|
|
.platform-topbar {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.system-filter-bar,
|
|
.rum-bar-row,
|
|
.skill-tree-list li {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|