mapillary-js/styles/AttributionComponent.css
Oscar Lorentzon d11f278d43 Simplify z-index approach.
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).
2016-08-26 13:22:25 -04:00

27 lines
449 B
CSS

.Attribution {
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
position: absolute;
bottom: 0;
right: 0;
padding: 4px 2px;
z-index: 10;
}
.Attribution a,
.Attribution span {
color: white;
text-decoration: none;
margin: 0 2px 4px;
}
.Attribution span {
pointer-events: none;
}
.Attribution a:hover {
color: rgb(53, 175, 109);
}