From 1dd5df807407e46cf693d0e578a6f846b90cd023 Mon Sep 17 00:00:00 2001 From: STEINNI Date: Wed, 11 Mar 2026 22:07:16 +0000 Subject: [PATCH] graflow playing with severity in test4 --- graflow_examples/flows/testFlowICMP.json | 12 +++---- graflow_examples/nodesLib/nodesEIC.html | 10 +++++- graflow_examples/nodesLib/nodesEIC2.html | 10 +++++- graflow_examples/test.html | 8 +++++ graflow_examples/test4.html | 42 +++++++++++++++++++++--- 5 files changed, 70 insertions(+), 12 deletions(-) diff --git a/graflow_examples/flows/testFlowICMP.json b/graflow_examples/flows/testFlowICMP.json index 942d964..9aafab9 100644 --- a/graflow_examples/flows/testFlowICMP.json +++ b/graflow_examples/flows/testFlowICMP.json @@ -7,7 +7,7 @@ "markup": { "title": "Evaluations", "subtitle": "...", - "severity": "secondary" + "severity": "info" }, "data": { "node": "eval", "nodeId":null} }, @@ -17,7 +17,7 @@ "markup": { "title": "GAP", "subtitle": "...", - "severity": "secondary" + "severity": "accent" }, "data": { "a": "a2", "b":"b2"} }, @@ -27,7 +27,7 @@ "markup": { "title": "CID", "subtitle": "...", - "severity": "secondary" + "severity": "primary" }, "data": { "a": "a3", "b":"b3"} }, @@ -37,7 +37,7 @@ "markup": { "title": "Case Allocation", "subtitle": "...", - "severity": "secondary" + "severity": "success" }, "data": { "track": "equity" @@ -49,7 +49,7 @@ "markup": { "title": "Grant Signature", "subtitle": "...", - "severity": "secondary" + "severity": "danger" }, "data": { "track": "grant" @@ -123,7 +123,7 @@ "markup": { "title": "Investment Agreement", "subtitle": "...", - "severity": "secondary" + "severity": "warning" }, "data": { "track": "equity", diff --git a/graflow_examples/nodesLib/nodesEIC.html b/graflow_examples/nodesLib/nodesEIC.html index ea17fc3..09c3411 100644 --- a/graflow_examples/nodesLib/nodesEIC.html +++ b/graflow_examples/nodesLib/nodesEIC.html @@ -8,6 +8,14 @@ position: absolute; padding: .5em; } + + div.bzgf-node div.body[primary] { background-color: var(--eicui-base-color-primary); color:white;} + div.bzgf-node div.body[info] { background-color: var(--eicui-base-color-info); color:white;} + div.bzgf-node div.body[success] { background-color: var(--eicui-base-color-success); color:white;} + div.bzgf-node div.body[warning] { background-color: var(--eicui-base-color-warning);} + div.bzgf-node div.body[danger] { background-color: var(--eicui-base-color-danger);} + div.bzgf-node div.body[accent] { background-color: var(--eicui-base-color-accent);} + .bzgf-node .body{ z-index: 1; position: absolute; @@ -68,7 +76,7 @@