feat: show feishu notification status

This commit is contained in:
2026-06-07 22:13:56 +08:00
parent cbc7493df8
commit 1a1b3ee9d4
9 changed files with 191 additions and 5 deletions

View File

@@ -887,7 +887,8 @@ input:focus {
.attachment-item span,
.workflow-card em,
.workflow-card small,
.workflow-error {
.workflow-error,
.workflow-notification {
color: var(--muted);
font-size: 12px;
}
@@ -1042,18 +1043,33 @@ input:focus {
.node-status span,
.node-status small,
.workflow-error {
.workflow-error,
.workflow-notification {
overflow-wrap: anywhere;
word-break: break-word;
}
.workflow-error {
.workflow-error,
.workflow-notification {
margin: 0;
padding: 8px 10px;
border-radius: 6px;
line-height: 1.5;
}
.workflow-error {
background: #fff1f0;
color: #b42318;
}
.workflow-notification {
background: #f5fbf7;
color: #166534;
}
.workflow-notification[data-notification-status="failed"] {
background: #fff1f0;
color: #b42318;
line-height: 1.5;
}
.status-running,