forked from RodrigoSC/dndTree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdndTree.css
More file actions
49 lines (39 loc) · 676 Bytes
/
dndTree.css
File metadata and controls
49 lines (39 loc) · 676 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
html, body {
font-family: helvetica, arial;
font-size: 15px;
}
#chart {
background-color: rgba(0, 0, 0, 0.1);
}
g.node {
cursor: default;
background-color: rgba(0, 0, 0, 0.1);
}
rect.issue {
fill: rgba(128, 0, 128, 0.1);
}
rect.dropArea {
fill: rgba(0, 128, 128, 0.1);
}
g.selected {
font-weight: bold;
}
g.selected rect.issue {
fill: rgba(255, 0, 0, 0.1);
}
tspan.link {
fill: rgb(0,0,200);
text-decoration: underline;
}
#dragging {
background-color: rgba(0, 255, 0, 0.1);
position: absolute;
font-weight: normal;
}
#marker {
stroke: black;
stroke-width: 1px;
}
#marker.illegal {
stroke: red;
}