Fix popup hovering (bubbling)

This commit is contained in:
2020-08-20 22:02:57 +02:00
parent b0b283cf0f
commit 3c5a83b366
4 changed files with 25 additions and 13 deletions

View File

@@ -628,7 +628,12 @@ function initSpotMessages(aoMessages, aoTracks, bNoFeed) {
});
//Open tooltip on latest message in mobile mode
if(iKey === (aoMessages.length - 1) && self.vars(['project', 'mode']) == self.consts.modes.blog && (!oMsg.medias || oMsg.medias.length < 3) && isMobile()) oMarker.openPopup();
if(
iKey === (aoMessages.length - 1) &&
self.vars(['project', 'mode']) == self.consts.modes.blog &&
(!oMsg.medias || oMsg.medias.length < 3) &&
isMobile()
) oMarker.openPopup();
oSpot.tmp(['markers', oMsg.id_message], oMarker);
});

View File

@@ -16,11 +16,18 @@ $stroke-width-axis : 2;
.leaflet-container {
background: none;
}
.leaflet-popup-content-wrapper {
.leaflet-popup {
padding-bottom: 60px;
margin-bottom: -40px;
.leaflet-popup-content-wrapper {
border-radius: 5px;
}
.leaflet-popup-content {
.leaflet-popup-content {
margin: 1rem;
}
}
}
.leaflet-control.spot-control, .leaflet-control .heightgraph-toggle {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long