feat: complete ops ai workspace bridge

This commit is contained in:
DCCONSTRUCTIONS
2026-06-13 08:46:55 +03:00
parent 8b1e356494
commit 3806848b07
7 changed files with 2040 additions and 45 deletions
+34 -1
View File
@@ -968,6 +968,7 @@
align-items: center;
justify-content: space-between;
gap: 8px;
overflow: visible;
}
.ai-settings-executor-row__title span,
@@ -984,7 +985,7 @@
}
.ai-settings-executor-row[data-active="true"] small {
color: rgba(255, 255, 255, 0.76);
color: color-mix(in srgb, var(--brand-contrast) 72%, transparent);
}
.ai-status-dot {
@@ -1013,6 +1014,20 @@
inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.ai-settings-executor-row[data-active="true"] .ai-status-dot {
background: color-mix(in srgb, var(--brand-contrast) 58%, transparent);
box-shadow:
0 0 0 3px color-mix(in srgb, var(--brand-contrast) 16%, transparent),
inset 0 1px 0 color-mix(in srgb, var(--brand-contrast) 14%, transparent);
}
.ai-settings-executor-row[data-active="true"] .ai-status-dot[data-status="online"] {
background: #65d99b;
box-shadow:
0 0 0 3px rgba(101, 217, 155, 0.22),
0 0 18px rgba(101, 217, 155, 0.35);
}
.ai-executor-status {
width: 12px;
height: 12px;
@@ -1904,6 +1919,24 @@
overflow-wrap: anywhere;
}
.nodedc-ai-workspace-console .ai-console-process__body {
display: grid;
gap: 8px;
color: rgba(255, 255, 255, 0.78);
font-size: 13px;
line-height: 1.4;
overflow-wrap: anywhere;
}
.nodedc-ai-workspace-console .ai-console-process__body p {
margin: 0;
white-space: pre-line;
}
.nodedc-ai-workspace-console .ai-console-process__body code {
font-size: inherit;
}
.nodedc-ai-workspace-console .ai-console-rich {
display: grid;
gap: 9px;