1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-27 12:05:06 +02:00
ttrss/plugins/embed_original/init.css
Bernd Amend 20a4022277 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.
2013-04-08 23:20:12 +02:00

14 lines
232 B
CSS

div.cdmContentInner iframe.embeddedContent {
overflow : auto;
width : 100%;
height : 600px;
border-width : 0px;
}
div.postContent iframe.embeddedContent {
overflow : auto;
width : 100%;
height : 100%;
border-width : 0px;
}