mapillary-js/styles/MouseComponent.css
Oscar Lorentzon 99bd53e3df Grab and grabbing cursor for mouse component.
Always show grabbing cursor when mouse component is
activated because pan and tilt is always possible.
2016-08-02 14:59:49 -04:00

17 lines
237 B
CSS

.MouseContainerGrab,
.MouseContainerGrabbing {
position: absolute;
bottom: 0;
left: 0;
top: 0;
right: 0;
z-index: -2;
}
.MouseContainerGrab {
cursor: grab;
}
.MouseContainerGrabbing {
cursor: grabbing;
}