Skip to content

Commit

Permalink
Merge pull request #26 from elchudi/master
Browse files Browse the repository at this point in the history
fix in .scaleY(), it was incorrectly using scaleX for the transformations
  • Loading branch information
LeZuse committed Mar 22, 2013
2 parents 99c4842 + 125f3c6 commit 9d0e5ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lesshat.less
Original file line number Diff line number Diff line change
Expand Up @@ -1579,11 +1579,11 @@
@msLocal: true; // IE 10+

.result (@arguments, @signal, @boolean, @localBoolean) when (@boolean = true) and (@localBoolean = true) {
.inception (@signal, @arguments) when (@signal = 1) { -webkit-transform: scaleX(@y);}
.inception (@signal, @arguments) when (@signal = 2) { -moz-transform: scaleX(@y);}
.inception (@signal, @arguments) when (@signal = 3) { -o-transform: scaleX(@y);}
.inception (@signal, @arguments) when (@signal = 4) { -ms-transform: scaleX(@y);}
.inception (@signal, @arguments) when (@signal = 5) { transform: scaleX(@y);}
.inception (@signal, @arguments) when (@signal = 1) { -webkit-transform: scaleY(@y);}
.inception (@signal, @arguments) when (@signal = 2) { -moz-transform: scaleY(@y);}
.inception (@signal, @arguments) when (@signal = 3) { -o-transform: scaleY(@y);}
.inception (@signal, @arguments) when (@signal = 4) { -ms-transform: scaleY(@y);}
.inception (@signal, @arguments) when (@signal = 5) { transform: scaleY(@y);}
.inception (@signal, @arguments) when (@signal > 5),(@signal < 1) { error: "Signal is out of range"; }
.inception(@signal, @arguments);
}
Expand Down

0 comments on commit 9d0e5ab

Please sign in to comment.