mapillary-js/styles/SequenceComponent.css
Oscar Lorentzon 6f45bfc0fb Render sequence steppers and play button.
Set configuration when playing reaches last node in direction.
2016-06-02 10:16:52 +02:00

37 lines
483 B
CSS

.SequenceContainer {
position: absolute;
left: 50%;
top: 20px;
transform: translate(-50%, 0);
}
.SequenceStep,
.SequencePlay {
cursor: pointer;
cursor: hand;
}
.SequenceStep {
background: lightgray;
}
.SequenceStep:hover {
background: darkgray;
}
.SequenceStepDisabled {
background: dimgray;
}
.SequencePlay {
background: lightgray;
}
.SequencePlay:hover {
background: darkgray;
}
.SequencePlayDisabled {
background: dimgray;
}