forked from GPCRviz/flareplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflareplot-main.css
67 lines (53 loc) · 835 Bytes
/
flareplot-main.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
64
65
66
path.arc {
fill: #fff;
}
.node {
font-size: 10px;
fill:#888;
cursor: pointer;
}
.nodeBar > path:hover {
stroke: black;
stroke-width: 1px;
}
.node:hover {
fill: #1f77b4;
}
.toggledNode {
font-size: 10px;
fill: black !important;
font-weight: bold !important;
cursor: pointer;
}
.link {
stroke: #000;
stroke-opacity: .15;
/*pointer-events: none;*/
}
.link.source, .link.target {
stroke-opacity: 1;
}
.node.target {
font-weight: bold;
}
.link.source {
stroke: #2ca02c;
}
.node.source {
font-weight: bold;
}
.link.target {
stroke: #2ca02c;
}
.link.toggled{
stroke-opacity: 1;
}
svg text {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
svg text::selection {
background: none;
}