disable pointer events on popup tip (#4599)

This commit is contained in:
Jon Woyame 2016-06-01 10:21:43 -04:00 committed by Vladimir Agafonkin
parent 878a022897
commit 3ecd4273f3

7
dist/leaflet.css vendored
View File

@ -430,6 +430,7 @@
.leaflet-popup {
position: absolute;
text-align: center;
margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
padding: 1px;
@ -444,11 +445,13 @@
margin: 18px 0;
}
.leaflet-popup-tip-container {
margin: 0 auto;
width: 40px;
height: 20px;
position: relative;
position: absolute;
left: 50%;
margin-left: -20px;
overflow: hidden;
pointer-events: none;
}
.leaflet-popup-tip {
width: 17px;