aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/main/frontend/resources/scss/components/_tree.scss
blob: 58f1f995b1151eb5294e33ae4b3032936d6ccb56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
.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-emphasis;
			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;
	}

}