summaryrefslogtreecommitdiff
path: root/plugins/embed_original
diff options
context:
space:
mode:
authorBernd Amend <[email protected]>2013-04-08 23:20:12 +0200
committerBernd Amend <[email protected]>2013-04-08 23:20:12 +0200
commit20a4022277081483afb2cc5f35517663b65ae93e (patch)
treea2215ff373b699b7407e80e946b9e2ea272dd160 /plugins/embed_original
parentb1df14d0eca3afa1f24a5202f47a6acc9400fe54 (diff)
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.
Diffstat (limited to 'plugins/embed_original')
-rw-r--r--plugins/embed_original/init.css4
1 files 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;