Merge pull request #971 from tordans/patch-1
CSS: Fix cut of text in table of popup content
This commit is contained in:
commit
52394c3e2a
1 changed files with 6 additions and 2 deletions
|
@ -1283,18 +1283,22 @@ a.add-datalayer:hover,
|
||||||
.umap-popup-content {
|
.umap-popup-content {
|
||||||
max-height: 500px;
|
max-height: 500px;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
.umap-popup-content iframe {
|
.umap-popup-content iframe {
|
||||||
min-width: 310px;
|
min-width: 310px;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
.umap-popup-content th,
|
||||||
|
.umap-popup-content td {
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
.umap-popup-container {
|
.umap-popup-container {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
.leaflet-popup-content h3 {
|
.leaflet-popup-content h3 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
Loading…
Reference in a new issue