mapillary-js/styles/mapillary-js.css
Oscar Lorentzon 9e44b76a4c fix: show dom content when viewer height is auto
Fixes #264

It is not possible to set height to 100% on a relatively positioned
element inside an element with automatic height.
2017-10-10 13:24:37 +00:00

30 lines
502 B
CSS

.mapillary-js {
background-color: #202020;
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;
}