mapillary-js/styles/mapillary-js.css
Oscar Lorentzon 303593c9e7 fix: guard against global css overrides
Fixes #279

Ensure that styles are not overridden for input focus
and box sizing.
2018-10-04 12:08:45 +00:00

37 lines
606 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;
}
.mapillary-js div {
box-sizing: content-box;
}
.mapillary-js input:focus {
background: none;
}