Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/bootstrap/_carousel.scss')
-rw-r--r--assets/stylesheets/bootstrap/_carousel.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/assets/stylesheets/bootstrap/_carousel.scss b/assets/stylesheets/bootstrap/_carousel.scss
index 49db83f..3a9853b 100644
--- a/assets/stylesheets/bootstrap/_carousel.scss
+++ b/assets/stylesheets/bootstrap/_carousel.scss
@@ -27,24 +27,24 @@
// WebKit CSS3 transforms for supported devices
@media all and (transform-3d), (-webkit-transform-3d) {
- transition: transform .6s ease-in-out;
- backface-visibility: hidden;
- perspective: 1000;
+ @include transition-transform(~'0.6s ease-in-out');
+ @include backface-visibility(~'hidden');
+ @include perspective(1000);
&.next,
&.active.right {
- transform: translate3d(100%, 0, 0);
+ @include translate3d(100%, 0, 0);
left: 0;
}
&.prev,
&.active.left {
- transform: translate3d(-100%, 0, 0);
+ @include translate3d(-100%, 0, 0);
left: 0;
}
&.next.left,
&.prev.right,
&.active {
- transform: translate3d(0, 0, 0);
+ @include translate3d(0, 0, 0);
left: 0;
}
}