@media print {
@-moz-document url-prefix() {
.mod-garagefinder {
#map-canvas {
margin-top: -200px;
height: 1000px !important;
width: 1250px !important;
position: relative;
left: -500px;
-moz-transform: scale(0.5);
}
}
}
It produces following output:
@media print {@-moz-document url-prefix() {.mod-garagefinder #map-canvas {margin-top: -200px;height: 1000px !important;width: 1250px !important;position: relative;left: -500px;-moz-transform: scale(0.5);}}
The last } is missing.
@media print { @-moz-document url-prefix() { .mod-garagefinder #map-canvas { margin-top: -200px; height: 1000px !important; width: 1250px !important; position: relative; left: -500px; -moz-transform: scale(0.5); } }} |
Even if this was a bug, this would rather be related to lessphp than Terrific itself. Have I misunderstood something? |