From b3ad642a068b9da1a220e05c439c8b27ad65d1ed Mon Sep 17 00:00:00 2001 From: Tobias Date: Tue, 28 Dec 2021 21:29:31 +0100 Subject: [PATCH] CSS: Fix cut of text popup content The overflow that was removed in 72f8fd971dfae775e2416ee7b74cb04e0e52700a did cut off long URLs and such which where now visible overflowing the popup content. However, we do want the visible but using `break-word`. --- umap/static/umap/map.css | 1 + 1 file changed, 1 insertion(+) diff --git a/umap/static/umap/map.css b/umap/static/umap/map.css index 4e71d6da..c8a43ce1 100644 --- a/umap/static/umap/map.css +++ b/umap/static/umap/map.css @@ -1297,6 +1297,7 @@ a.add-datalayer:hover, .umap-popup-container { flex-grow: 1; padding: 0 10px; + word-break: break-word; } .leaflet-popup-content h3 { margin-bottom: 0;