mapillary-js/styles/mapillary-js.css
Oscar Lorentzon f23a40cc85 feat(spatial): add selection and hover visualization
Indicate hovered and selected nodes with different color.
2021-01-13 10:35:01 +01:00

38 lines
607 B
CSS

.mapillary-js {
background-color: #0F0F0F;
position: relative;
overflow: hidden;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.mapillary-js-interactive {
cursor: grab;
}
.mapillary-js-interactive:active {
cursor: grabbing;
}
.mapillary-js .mapillary-js-dom {
bottom: 0;
left: 0;
overflow: hidden;
pointer-events: none;
position: absolute;
right: 0;
top: 0;
user-select: none;
}
.mapillary-js-dom .domRenderer {
pointer-events: auto;
}
.mapillary-js div {
box-sizing: content-box;
}
.mapillary-js input:focus {
background: none;
}