From 20a4022277081483afb2cc5f35517663b65ae93e Mon Sep 17 00:00:00 2001 From: Bernd Amend Date: Mon, 8 Apr 2013 23:20:12 +0200 Subject: embed_original: change overflow for the iframe content from hidden to auto Without this change only a portion of the original website is embedded in Firefox 20. The Chromium 26 behavior is as expected with hidden and auto. --- plugins/embed_original/init.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/embed_original/init.css b/plugins/embed_original/init.css index 4ce482e1a..5fb7e012e 100644 --- a/plugins/embed_original/init.css +++ b/plugins/embed_original/init.css @@ -1,12 +1,12 @@ div.cdmContentInner iframe.embeddedContent { - overflow : hidden; + overflow : auto; width : 100%; height : 600px; border-width : 0px; } div.postContent iframe.embeddedContent { - overflow : hidden; + overflow : auto; width : 100%; height : 100%; border-width : 0px; -- cgit v1.2.3