diff options
| author | Torsten Baldes <[email protected]> | 2012-02-06 09:59:23 +0100 |
|---|---|---|
| committer | Torsten Baldes <[email protected]> | 2012-02-06 09:59:23 +0100 |
| commit | 9ba9185afc6a91d8047bb76654af429d7efba96b (patch) | |
| tree | 5ad0306ce5faf91ce839e96a843974f710d891a4 | |
| parent | c8c4d5b3925b033723a3f589db9c579b37ca5ceb (diff) | |
| download | bootstrap-9ba9185afc6a91d8047bb76654af429d7efba96b.tar.xz bootstrap-9ba9185afc6a91d8047bb76654af429d7efba96b.zip | |
Removed double declaration of Skew
+ added translate3d to mixins.less
| -rw-r--r-- | less/mixins.less | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/less/mixins.less b/less/mixins.less index 545ccb9ba..33def6488 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -313,12 +313,12 @@ -o-transform: translate(@x, @y); transform: translate(@x, @y); } -.skew(@x: 0, @y: 0) { - -webkit-transform: translate(@x, @y); - -moz-transform: translate(@x, @y); - -ms-transform: translate(@x, @y); - -o-transform: translate(@x, @y); - transform: translate(@x, @y); +.translate3d(@x: 0, @y: 0, @z: 0) { + -webkit-transform: translate(@x, @y, @z); + -moz-transform: translate(@x, @y, @z); + -ms-transform: translate(@x, @y, @z); + -o-transform: translate(@x, @y, @z); + transform: translate(@x, @y, @z); } .skew(@x: 0, @y: 0) { -webkit-transform: skew(@x, @y); |
