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).
29 lines
468 B
CSS
29 lines
468 B
CSS
.Debug {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 30em;
|
|
background-color: lime;
|
|
font-size: 12px;
|
|
padding: 1em;
|
|
font-family: Input, Menlo, monospace;
|
|
z-index: 50;
|
|
}
|
|
|
|
.DebugButton {
|
|
background-color: lime;
|
|
color: white;
|
|
border: 1px solid white;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
cursor: hand;
|
|
z-index: 50;
|
|
}
|
|
|
|
.DebugButtonFixed {
|
|
position: absolute;
|
|
bottom: 2px;
|
|
left: 2px;
|
|
}
|