aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Baldes <[email protected]>2012-02-06 09:59:23 +0100
committerTorsten Baldes <[email protected]>2012-02-06 09:59:23 +0100
commit9ba9185afc6a91d8047bb76654af429d7efba96b (patch)
tree5ad0306ce5faf91ce839e96a843974f710d891a4
parentc8c4d5b3925b033723a3f589db9c579b37ca5ceb (diff)
downloadbootstrap-9ba9185afc6a91d8047bb76654af429d7efba96b.tar.xz
bootstrap-9ba9185afc6a91d8047bb76654af429d7efba96b.zip
Removed double declaration of Skew
+ added translate3d to mixins.less
-rw-r--r--less/mixins.less12
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);