aboutsummaryrefslogtreecommitdiffstats
path: root/workflow/workflow-designer-ui/src/main/frontend/resources/scss/components/_tree.scss
diff options
context:
space:
mode:
authorStanislav Vishnevetskiy <shlomo-stanisla.vishnevetskiy@amdocs.com>2018-07-23 13:26:41 +0300
committerStanislav Vishnevetskiy <shlomo-stanisla.vishnevetskiy@amdocs.com>2018-07-23 13:26:49 +0300
commit101bc936e8bde273f7bc145873a8894973bec884 (patch)
treed3375a5da0bd1579129782a265d0a6939171980a /workflow/workflow-designer-ui/src/main/frontend/resources/scss/components/_tree.scss
parent7e78cd19bbb2b0730fafc0b328a71c69f5730e16 (diff)
FE docker & FE App
Issue-ID: SDC-1482 Change-Id: I1fbdcc4f00f7dbc76ffdc1ad4c2a60a16fb34e70 Signed-off-by: Stanislav Vishnevetskiy <shlomo-stanisla.vishnevetskiy@amdocs.com>
Diffstat (limited to 'workflow/workflow-designer-ui/src/main/frontend/resources/scss/components/_tree.scss')
-rw-r--r--workflow/workflow-designer-ui/src/main/frontend/resources/scss/components/_tree.scss57
1 files changed, 57 insertions, 0 deletions
diff --git a/workflow/workflow-designer-ui/src/main/frontend/resources/scss/components/_tree.scss b/workflow/workflow-designer-ui/src/main/frontend/resources/scss/components/_tree.scss
new file mode 100644
index 00000000..1847ff30
--- /dev/null
+++ b/workflow/workflow-designer-ui/src/main/frontend/resources/scss/components/_tree.scss
@@ -0,0 +1,57 @@
+
+.tree-view {
+ overflow: hidden;
+
+ &.scrollable {
+ overflow: auto;
+ }
+
+ .node {
+ text-shadow: none;
+ stroke: none;
+
+ .outer-circle {
+ stroke: $blue;
+ stroke-width: 2px;
+ fill: $white;
+ }
+
+ .inner-circle {
+ fill: $blue;
+ }
+
+ text {
+ text-anchor: end;
+ @include body-2;
+ @include semi-bold;
+ fill: $blue;
+ }
+
+ &.clickable {
+ cursor: pointer;
+ }
+
+ &.selectedNode {
+ .outer-circle {
+ fill: $blue;
+ }
+
+ .inner-circle {
+ fill: $blue;
+ }
+
+ text {
+ fill: $blue;
+ }
+ }
+ }
+
+
+ .link {
+ fill: none;
+ stroke: $dark-gray;
+ stroke-opacity: 0.4;
+ stroke-width: 1.5px;
+ }
+
+}