diff --git a/dist/css/bootstrap.css.map b/dist/css/bootstrap.css.map index e4eb29edc..acef712d5 100644 Binary files a/dist/css/bootstrap.css.map and b/dist/css/bootstrap.css.map differ diff --git a/docs/dist/css/bootstrap.css.map b/docs/dist/css/bootstrap.css.map index e4eb29edc..acef712d5 100644 Binary files a/docs/dist/css/bootstrap.css.map and b/docs/dist/css/bootstrap.css.map differ diff --git a/less/carousel.less b/less/carousel.less index c11470142..5724d8a56 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -27,24 +27,24 @@ // WebKit CSS3 transforms for supported devices @media all and (transform-3d), (-webkit-transform-3d) { - .transition-transform(~'0.6s ease-in-out'); - .backface-visibility(~'hidden'); - .perspective(1000); - + transition: transform .6s ease-in-out; + backface-visibility: hidden; + perspective: 1000; + &.next, &.active.right { - .translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); left: 0; } &.prev, &.active.left { - .translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); left: 0; } &.next.left, &.prev.right, &.active { - .translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); left: 0; } }