aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-02-06 23:48:48 -0800
committerMark Otto <[email protected]>2012-02-06 23:48:48 -0800
commitb5f1d2f3a46e070427eb73857c653b0bf090a1d6 (patch)
tree5bc29ce758784295809ceec42f5a743123457140
parent6840d8f7763c97ad3e095020c7933be63ccf8916 (diff)
downloadbootstrap-b5f1d2f3a46e070427eb73857c653b0bf090a1d6.tar.xz
bootstrap-b5f1d2f3a46e070427eb73857c653b0bf090a1d6.zip
rearrange order of 3d and skew mixins:
-rw-r--r--docs/assets/bootstrap.zipbin52562 -> 52562 bytes
-rw-r--r--less/mixins.less14
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip
index cf0e66414..9de4bed87 100644
--- a/docs/assets/bootstrap.zip
+++ b/docs/assets/bootstrap.zip
Binary files differ
diff --git a/less/mixins.less b/less/mixins.less
index fab1f1568..2b96d21e5 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -322,13 +322,6 @@
-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);
-moz-transform: skew(@x, @y);
@@ -336,6 +329,13 @@
-o-transform: skew(@x, @y);
transform: skew(@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);
+}
// Background clipping
// Heads up: FF 3.6 and under need "padding" instead of "padding-box"