aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-02-06 23:48:16 -0800
committerMark Otto <[email protected]>2012-02-06 23:48:16 -0800
commit6840d8f7763c97ad3e095020c7933be63ccf8916 (patch)
treed064aa6bdda61c69b2a9b15cc6a5d34776eee691
parent7ce62ffc9813ea2958b353ee36374d3146034dbf (diff)
parent9ba9185afc6a91d8047bb76654af429d7efba96b (diff)
downloadbootstrap-6840d8f7763c97ad3e095020c7933be63ccf8916.tar.xz
bootstrap-6840d8f7763c97ad3e095020c7933be63ccf8916.zip
Merge branch 'tobaco-master' into 2.0.1-wip
-rw-r--r--less/mixins.less12
1 files changed, 6 insertions, 6 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 95292a6f2..fab1f1568 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -322,12 +322,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);