forked from Lyricsis/Lyricsis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdragit.css
More file actions
51 lines (44 loc) · 785 Bytes
/
dragit.css
File metadata and controls
51 lines (44 loc) · 785 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
path.lineTrajectory, path.subTrajectory {
stroke-width: 2;
stroke-opacity: 0.2;
opacity: 0.5;
fill-opacity: 0.3;
stroke: gray;
fill: none;
pointer-events: none;
}
path.lineTrajectoryMonotone {
stroke-width: 2;
fill: none;
pointer-events: none;
stroke: lightgray;
}
circle.pointTrajectory {
pointer-events: none;
stroke: lightgray;
fill: black;
opacity: .5;
}
line.lineClosestTrajectory {
stroke: black;
stroke-dasharray: 4,4;
display: block;
}
line.lineClosestPoint {
stroke: black;
opacity: .1;
display: block;
}
.selected {
opacity: .5;
}
circle.pointClosestTrajectory {
opacity: .1;
display: block;
}
circle.focusGuide {
opacity: 1;
display: block;
fill: none;
stroke: black;
}