From caa773020c0653ac2504c05f52fbb3a203689994 Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Thu, 10 Nov 2016 17:51:51 -0500 Subject: [PATCH] Pulled in the colors css files so that I can use @color-names instead of hex --- .../workflow-chart/workflow-chart.block.less | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/awx/ui/client/src/job-templates/workflow-chart/workflow-chart.block.less b/awx/ui/client/src/job-templates/workflow-chart/workflow-chart.block.less index bc0d4472cf..9afc170a01 100644 --- a/awx/ui/client/src/job-templates/workflow-chart/workflow-chart.block.less +++ b/awx/ui/client/src/job-templates/workflow-chart/workflow-chart.block.less @@ -1,35 +1,33 @@ -.WorkflowChart-isActiveEdit { - stroke: red; -} +@import "./client/src/shared/branding/colors.default.less"; .nodeConnector circle, .nodeConnector .linkCross, .node .addCircle, .node .removeCircle, .node .WorkflowChart-hoverPath { opacity: 0; } .node .addCircle, .nodeConnector .addCircle { - fill: #5CB85C; + fill: @default-succ; } .addCircle.addHovering { - fill: #449D44; + fill: @default-succ-hov; } .node .removeCircle { - fill: #D9534F; + fill: @default-err; } .removeCircle.removeHovering { - fill: #C9302C; + fill: @default-err-hov; } .node .WorkflowChart-defaultText { font-size: 12px; font-family: 'Open Sans', sans-serif; - fill: #707070; + fill: @default-interface-txt; } .node .rect { - fill: #FCFCFC; + fill: @default-secondary-bg; } .rect.placeholder { @@ -37,7 +35,7 @@ } .node .transparentRect { - fill: #FFFFFF; + fill: @default-bg; opacity: 0; } @@ -61,11 +59,11 @@ } .WorkflowChart-svg { - background-color: #f6f6f6; + background-color: @default-no-items-bord; } .WorkflowChart-nodeTypeCircle { - fill: #848992; + fill: @default-icon; } .WorkflowChart-nodeTypeLetter { - fill: #FFFFFF; + fill: @default-bg; }