blob: 49c8e4eb8a4c8f0d1e0554d3e40068ff4f8d3047 (
plain)
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
|
.appGrid .timeline .keyframes .frame .keyframeWrapper {
--keyframe-color: var(--gruble);
color: var(--keyframe-color);
line-height: 0;
top: 44px;
width: 24px;
height: 24px;
}
.appGrid .timeline .keyframes .frame.current .keyframeWrapper { color: var(--piss); }
.appGrid .timeline .keyframes .frame.current .keyframeWrapper .loop .connector { background-color: var(--piss); }
.appGrid .timeline .keyframes .frame .keyframeWrapper,
.appGrid .timeline .keyframes .frame .keyframeWrapper .loop .connector {
transition-property: color, background-color;
transition-duration: .2s;
}
.timeline .keyframes .frame .keyframeWrapper { cursor: grab; }
.timeline .keyframes .frame .keyframeWrapper:active { cursor: grabbing; }
.loop .connector {
height: 16px;
background-color: var(--keyframe-color);
opacity: .25;
inset: 4px 13px;
position: absolute;
}
.loop {
position: absolute;
width: calc((var(--frame) - var(--begin)) * var(--zoom) * 1px + 24px);
height: 24px;
right: 0;
}
.loop .start,
.loop .end {
z-index: 1;
}
.keyframe > * {
fill: currentColor;
}
|