blob: 380fb64aecbf59e3e682683a9e6317caedb0df93 (
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
|
.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;
@extend .body-2-semibold;
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;
}
}
|