commit 8703ad928a56215f3685cd3e49d7703a8877c3d7 parent e9c6eecaea3d53fbed11fc47d27c0bb756b11811 Author: JayVii <jayvii[AT]posteo[DOT]de> Date: Tue, 8 Oct 2024 12:04:15 +0200 fix: hide images in case they are not filtered properly Diffstat:
M | template.html | | | 7 | +++++-- |
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/template.html b/template.html @@ -33,8 +33,11 @@ { display: none; } - /* Hide iframes in case they are not filtered out */ - iframe + /* Hide iframes and images in case they are not filtered out */ + section > iframe, + section > p > iframe, + section > img, + section > p > img { display: none; }