From: Bernd Amend Date: Mon, 8 Apr 2013 21:20:12 +0000 (+0200) Subject: embed_original: change overflow for the iframe content from hidden to auto X-Git-Tag: 1.7.9~39^2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=20a4022277081483afb2cc5f35517663b65ae93e;p=tt-rss.git 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. --- diff --git a/plugins/embed_original/init.css b/plugins/embed_original/init.css index 4ce482e1..5fb7e012 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;