CSS: Fix cut of text popup content
The overflow that was removed in 72f8fd971d
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`.
This commit is contained in:
parent
72f8fd971d
commit
b3ad642a06
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue