CSS: Fix cut of text in iframes of popup content
The overflow hidden removed in72f8fd971d
did cut of iframes and their content. However, it did introduce a scrollbar when the iframe is too big. Which is fixed here by adding a max-width of 100%. There was a max-width but one with fixed pixel values before, which was removed in345283782c (diff-5470058378896897263b7a99e4226772660e09d5e9e51b530fffc6075b8e07bfL1299)
. The stylesheet-style's max-width will overwrite any width-specification given via the width-attribute on the iframe as well as width-conditions set as inline-styles. However, adding a inline max-width-style will overwrite the css-file specification due to higher css specificity.
This commit is contained in:
parent
b3ad642a06
commit
00890aabde
1 changed files with 1 additions and 0 deletions
|
@ -1289,6 +1289,7 @@ a.add-datalayer:hover,
|
||||||
}
|
}
|
||||||
.umap-popup-content iframe {
|
.umap-popup-content iframe {
|
||||||
min-width: 310px;
|
min-width: 310px;
|
||||||
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
.umap-popup-content th,
|
.umap-popup-content th,
|
||||||
.umap-popup-content td {
|
.umap-popup-content td {
|
||||||
|
|
Loading…
Reference in a new issue