-
Notifications
You must be signed in to change notification settings - Fork 9
/
dag.css
63 lines (54 loc) · 824 Bytes
/
dag.css
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
57
58
59
60
61
62
63
.node rect {
stroke: black;
stroke-width: 0;
}
.node.selected rect {
stroke-width: 2.5;
stroke: red;
}
.node text {
pointer-events: none;
text-shadow: 0 1px 0 #fff;
}
.link {
fill: none;
fill-opacity: .3;
stroke: #33CCFF;
stroke-width: 2.5;
stroke-opacity: .6;
cursor: pointer; /* new */
}
.link:hover {
fill-opacity: .6;
stroke-width: 5; /* new*/
}
.fglink {
fill: #33CCFF;
fill-opacity: .3;
stroke: #33CCFF;
stroke-opacity: .6;
}
.fglink:hover {
fill-opacity: .6;
}
.rect {
overflow: hidden;
}
.bgsvg {
position: absolute;
left : 0;
top : 0;
}
.selectBox {
fill: black;
opacity: 0.2;
}
.link.highlight {
stroke-width: 10;
stroke: black;
}
/* new */
.link.highlightNodeLink {
stroke-width: 10;
stroke: red;
}