24 lines
No EOL
452 B
CSS
24 lines
No EOL
452 B
CSS
@import 'zindex.css';
|
|
|
|
.positionTracker {
|
|
width: 15px;
|
|
height: 15px;
|
|
border: solid 1px $teal;
|
|
margin-left: -7px;
|
|
border-radius: 50%;
|
|
background-color: $active-blue;
|
|
position: absolute;
|
|
left: 0;
|
|
z-index: $positionTracker;
|
|
pointer-events: none; /* temporary. DnD should be */
|
|
}
|
|
|
|
.playedTimeline {
|
|
display: block;
|
|
height: 100%;
|
|
border-radius: 4px;
|
|
background-color: $teal;
|
|
pointer-events: none;
|
|
height: 2px;
|
|
z-index: 1;
|
|
} |