mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-18 13:56:53 +00:00
Interactive (e.g. navigation, attribution) element have z-index 10. Overlayed elements (slider, route bubble) have z-index 20. Filling elements have z-index -1 to 9. Cover have z-index 100. Special elements (debug) have z-index 50. Do not change z-index in server cssnano plugin (z-index are not changed when built from npm script).
13 lines
250 B
CSS
13 lines
250 B
CSS
.BearingIndicator {
|
|
position: absolute;
|
|
bottom: 28px;
|
|
right: 10px;
|
|
width: 28px;
|
|
height: 28px;
|
|
background: url(./pano-indicator.svg);
|
|
background-size: contain;
|
|
pointer-events: none;
|
|
opacity: 0.5;
|
|
z-index: 10;
|
|
}
|