Fix z-order issue with profile/alternative list that was below leaflet map buttons

This commit is contained in:
Gautier Pelloux-Prayer 2017-05-04 10:08:32 +02:00
parent 4e19946b96
commit 6e4794131f

View file

@ -2,6 +2,14 @@ html, body, #map {
height: 100%;
}
/* This is important so that bootstrap-select list goes over leaflet buttons
Since the list is in navbar and leaflet buttons within map, we create a
stacking context on their common ancestor */
body, #content {
position: relative;
z-index: 1;
}
.flexcolumn {
display: -webkit-box;
display: -moz-box;