summaryrefslogtreecommitdiff
path: root/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_carousel.scss
diff options
context:
space:
mode:
Diffstat (limited to 'bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_carousel.scss')
-rw-r--r--bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_carousel.scss14
1 files changed, 8 insertions, 6 deletions
diff --git a/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_carousel.scss b/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_carousel.scss
index 49db83fc..f91d7ee3 100644
--- a/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_carousel.scss
+++ b/bower_components/bootstrap-sass-official/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;
}
}
@@ -148,6 +148,7 @@
width: 20px;
height: 20px;
margin-top: -10px;
+ line-height: 1;
font-family: serif;
}
@@ -195,6 +196,7 @@
// Internet Explorer 8-9 does not support clicks on elements without a set
// `background-color`. We cannot use `filter` since that's not viewed as a
// background color by the browser. Thus, a hack is needed.
+ // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer
//
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
// set alpha transparency for the best results possible.