]> git.wh0rd.org - tt-rss.git/commitdiff
embed_original: change overflow for the iframe content from hidden to auto
authorBernd Amend <bernd.amend@googlemail.com>
Mon, 8 Apr 2013 21:20:12 +0000 (23:20 +0200)
committerBernd Amend <bernd.amend@googlemail.com>
Mon, 8 Apr 2013 21:20:12 +0000 (23:20 +0200)
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

index 4ce482e1a0954c7c48e2cebf36db558229b0dcb6..5fb7e012ec500afe45a1b77854b1d9cd9338ec7a 100644 (file)
@@ -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;