/*
kleine ergänzungen leaflet fullscreen
*/
/*
    Created on : 24.05.2019, 11:33:32
    Author     : Heiko Werner <werner@edition-software.de>
*/

.fullscreen-icon { background-image: url(/styles/icons/icon-fullscreen.png); }
.leaflet-retina .fullscreen-icon { background-image: url(/styles/icons/icon-fullscreen-2x.png); background-size: 26px 26px; }
/* one selector per rule as explained here : http://www.sitepoint.com/html5-full-screen-api/ */
.leaflet-container:-webkit-full-screen { width: 100% !important; height: 100% !important; z-index: 99999; }
.leaflet-container:-ms-fullscreen { width: 100% !important; height: 100% !important; z-index: 99999; }
.leaflet-container:full-screen { width: 100% !important; height: 100% !important; z-index: 99999; }
.leaflet-container:fullscreen { width: 100% !important; height: 100% !important; z-index: 99999; }
.leaflet-pseudo-fullscreen { position: fixed !important; width: 100% !important; height: 100% !important; top: 0px !important; left: 0px !important; z-index: 99999; }

/*
Leaflet-Container mit z-index, weil sonst Suchergebnis-Vorschläge überlagert werden
*/
/*
    Created on : 17.12.2019, 09:11
    Author     : Johannes Lengdobler <lengdobler.johannes@regensburg.de>
*/
#main-wrapper .container-fluid .leaflet-container { z-index: 1; }