From 6e4794131f2a1aa2b91676872f6c1b601cc19814 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Thu, 4 May 2017 10:08:32 +0200 Subject: [PATCH] Fix z-order issue with profile/alternative list that was below leaflet map buttons --- css/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/css/style.css b/css/style.css index cfa57f8..ffa952d 100644 --- a/css/style.css +++ b/css/style.css @@ -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;