Fixed #753 (Wrong scaling of projector live view in Internet Explorer)
Supports IE8+ only. Dropped IE7 support.
This commit is contained in:
parent
3a58749e18
commit
7dc2b0d904
@ -98,14 +98,17 @@
|
|||||||
|
|
||||||
/* iframe */
|
/* iframe */
|
||||||
#iframe {
|
#iframe {
|
||||||
|
width: 1024px;
|
||||||
|
height: 768px;
|
||||||
-moz-transform-origin: 0 0;
|
-moz-transform-origin: 0 0;
|
||||||
-webkit-transform-origin: 0 0;
|
-webkit-transform-origin: 0 0;
|
||||||
-o-transform-origin: 0 0;
|
-o-transform-origin: 0 0;
|
||||||
-moz-transform: scale(0.25);
|
-moz-transform: scale(0.25);
|
||||||
-webkit-transform: scale(0.25);
|
-webkit-transform: scale(0.25);
|
||||||
-o-transform: scale(0.25);
|
-o-transform: scale(0.25);
|
||||||
width: 1024px;
|
transform: scale(0.25);
|
||||||
height: 768px;
|
/* 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 {
|
#iframewrapper {
|
||||||
width: 256px;
|
width: 256px;
|
||||||
|
Loading…
Reference in New Issue
Block a user