HadTavern 0.01: Gemini/Claude fixes; UI _origId reuse; docs; .bat open

This commit is contained in:
2025-09-09 15:42:10 +03:00
parent e3d0f6246e
commit 64c9451d98
12 changed files with 2095 additions and 863 deletions

View File

@@ -301,4 +301,27 @@ button:hover { background: #273246; }
#drawflow .drawflow-delete:active,
.drawflow-delete:active {
transform: translate(-50%, -50%) scale(0.97) !important;
}
/* Execution highlight states (SSE-driven) */
.drawflow .drawflow-node .title-box,
.drawflow .drawflow-node .box {
transition: border-color .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.drawflow .drawflow-node.node-running .title-box,
.drawflow .drawflow-node.node-running .box {
border-color: #60a5fa !important; /* blue */
box-shadow: 0 0 0 2px rgba(96,165,250,.35) !important;
}
.drawflow .drawflow-node.node-ok .title-box,
.drawflow .drawflow-node.node-ok .box {
border-color: #34d399 !important; /* green */
box-shadow: 0 0 0 2px rgba(52,211,153,.35) !important;
}
.drawflow .drawflow-node.node-err .title-box,
.drawflow .drawflow-node.node-err .box {
border-color: #ef4444 !important; /* red */
box-shadow: 0 0 0 2px rgba(239,68,68,.35) !important;
}