diff options
| author | Mark Otto <[email protected]> | 2012-08-20 14:26:38 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-20 14:26:38 -0700 |
| commit | aa2cec6f2f706f8c1754f8bf79a8c9f094445bd8 (patch) | |
| tree | 9703624d7a3bc5df783a33a5d5f77a6c3f0b92a2 | |
| parent | 01572f00bb5671aaab1763b85c9608c10362aef4 (diff) | |
| download | bootstrap-aa2cec6f2f706f8c1754f8bf79a8c9f094445bd8.tar.xz bootstrap-aa2cec6f2f706f8c1754f8bf79a8c9f094445bd8.zip | |
fixes #4178: translate3d instead of translate
| -rw-r--r-- | less/mixins.less | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/less/mixins.less b/less/mixins.less index b6352831f..db60f1aea 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -291,10 +291,10 @@ transform: skew(@x, @y); } .translate3d(@x, @y, @z) { - -webkit-transform: translate(@x, @y, @z); - -moz-transform: translate(@x, @y, @z); - -o-transform: translate(@x, @y, @z); - transform: translate(@x, @y, @z); + -webkit-transform: translate3d(@x, @y, @z); + -moz-transform: translate3d(@x, @y, @z); + -o-transform: translate3d(@x, @y, @z); + transform: translate3d(@x, @y, @z); } // Backface visibility |
