Преглед на файлове

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.

Bernd Amend преди 11 години
родител
ревизия
20a4022277
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      plugins/embed_original/init.css

+ 2 - 2
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;