Fixed #753 (Wrong scaling of projector live view in Internet Explorer)

Supports IE8+ only. Dropped IE7 support.
This commit is contained in:
Emanuel Schuetze 2013-06-17 17:30:46 +02:00
parent 3a58749e18
commit 7dc2b0d904
1 changed files with 5 additions and 2 deletions

View File

@ -98,14 +98,17 @@
/* iframe */
#iframe {
width: 1024px;
height: 768px;
-moz-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
-o-transform-origin: 0 0;
-moz-transform: scale(0.25);
-webkit-transform: scale(0.25);
-o-transform: scale(0.25);
width: 1024px;
height: 768px;
transform: scale(0.25);
/* IE8+ - must be on one line, unfortunately */
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.25, M12=0, M21=0, M22=0.25, SizingMethod='auto expand')";
}
#iframewrapper {
width: 256px;