Prevent the Instagram iframe from overlapping other elements
authorAlexander Ebert <ebert@woltlab.com>
Mon, 6 Feb 2023 15:22:55 +0000 (16:22 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Mon, 6 Feb 2023 15:22:55 +0000 (16:22 +0100)
See https://www.woltlab.com/community/thread/298758-medienanbieter-instagram-%C3%BCberlappt-content/

wcfsetup/install/files/style/bbcode/media.scss

index 5131e9be06e388fcf533d5a528d664a1056be7e4..76ece7085797e6ac30ad8293a857568492a6305f 100644 (file)
        }
 }
 
-/* workaround for broken iframes without height on mobile */
 iframe.instagram-media {
+       /* workaround for broken iframes without height on mobile */
        min-height: 530px;
+
+       /* Prevent the <iframe> from overlapping adjacent elements. */
+       position: relative !important;
 }