-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (51 loc) · 852 Bytes
/
Copy pathstyle.css
File metadata and controls
51 lines (51 loc) · 852 Bytes
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
html,body,#chart {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
display: block;
z-index: -1;
}
#legend {
position: absolute;
display:block;
top: 0%;
right: 0%;
max-height: 100%;
overflow-y: auto;
}
#legend summary {
text-align: right;
}
#legend span {
margin-right: 1ch;
font-family: monospace;
}
#legend .highlighted {
background: yellow;
}
#edges {
stroke: grey;
stroke-opacity: 0.6;
marker-end: url(#arrow);
}
#nodes path {
stroke-width: 1.5;
stroke: white;
}
#nodes .highlighted {
stroke: yellow;
stroke-width: 1.5;
}
#labels {
font-family: monospace;
white-space: pre-line; /* Allow multiline SVG text */
pointer-events: none; /* Make labels click-through */
font-weight: bold;
}
#labels .label {
display: none;
}
#labels .label.pinned, #labels .label.peeking {
display: block;
}