Commit b5f1d2f3 authored by Mark Otto's avatar Mark Otto
Browse files

rearrange order of 3d and skew mixins:

parent 6840d8f7
2 merge requests!1882[2.0.1-wip] black/dark button,!1894[2.0.1 wip] -- fixing Issue #1893 - removing hardcoded color border from <hr/>
Showing with 7 additions and 7 deletions
+7 -7
No preview for this file type
......@@ -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"
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment