diff options
Diffstat (limited to 'testing-scheduler/ui/src/assets/css/wf-graph.css')
-rw-r--r-- | testing-scheduler/ui/src/assets/css/wf-graph.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testing-scheduler/ui/src/assets/css/wf-graph.css b/testing-scheduler/ui/src/assets/css/wf-graph.css new file mode 100644 index 00000000..e576656e --- /dev/null +++ b/testing-scheduler/ui/src/assets/css/wf-graph.css @@ -0,0 +1,13 @@ +g.node circle{
+ fill: #ffffff;
+ stroke: #333;
+}
+g.node rect{
+ fill: #ffffff;
+ stroke: #333;
+}
+g.edgePath .path {
+ stroke: #000000!important;
+ fill: transparent!important;
+ stroke-dasharray: 0, 0!important;
+}
|