2018-01-22 01:51:08 -05:00
|
|
|
// Notes on the classes:
|
|
|
|
//
|
2018-10-15 18:25:44 -04:00
|
|
|
// 1. .carousel.pointer-event should ideally be pan-y (to allow for users to scroll vertically)
|
|
|
|
// even when their scroll action started on a carousel, but for compatibility (with Firefox)
|
|
|
|
// we're preventing all actions instead
|
|
|
|
// 2. The .carousel-item-left and .carousel-item-right is used to indicate where
|
2018-01-22 01:51:08 -05:00
|
|
|
// the active slide is heading.
|
2018-10-15 18:25:44 -04:00
|
|
|
// 3. .active.carousel-item is the current slide.
|
|
|
|
// 4. .active.carousel-item-left and .active.carousel-item-right is the current
|
2018-04-01 11:22:31 -04:00
|
|
|
// slide in its in-transition state. Only one of these occurs at a time.
|
2018-10-15 18:25:44 -04:00
|
|
|
// 5. .carousel-item-next.carousel-item-left and .carousel-item-prev.carousel-item-right
|
2018-01-22 01:51:08 -05:00
|
|
|
// is the upcoming slide in transition.
|
|
|
|
|
2012-01-15 19:27:36 -05:00
|
|
|
.carousel {
|
2012-01-15 21:40:17 -05:00
|
|
|
position: relative;
|
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2018-10-14 17:10:13 -04:00
|
|
|
.carousel.pointer-event {
|
2018-11-02 19:51:17 -04:00
|
|
|
touch-action: pan-y;
|
2018-10-14 17:10:13 -04:00
|
|
|
}
|
|
|
|
|
2012-01-15 21:40:17 -05:00
|
|
|
.carousel-inner {
|
2012-09-26 14:20:27 -04:00
|
|
|
position: relative;
|
2012-01-15 21:40:17 -05:00
|
|
|
width: 100%;
|
2014-12-11 15:05:29 -05:00
|
|
|
overflow: hidden;
|
2018-10-31 03:45:39 -04:00
|
|
|
@include clearfix();
|
2016-11-26 02:34:16 -05:00
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2016-11-26 02:34:16 -05:00
|
|
|
.carousel-item {
|
|
|
|
position: relative;
|
|
|
|
display: none;
|
2018-10-31 03:45:39 -04:00
|
|
|
float: left;
|
2017-04-08 19:11:59 -04:00
|
|
|
width: 100%;
|
2018-10-31 03:45:39 -04:00
|
|
|
margin-right: -100%;
|
2018-11-05 11:56:41 -05:00
|
|
|
backface-visibility: hidden;
|
2018-10-31 03:45:39 -04:00
|
|
|
@include transition($carousel-transition);
|
2016-11-26 02:34:16 -05:00
|
|
|
}
|
2012-01-25 14:47:36 -05:00
|
|
|
|
2016-11-26 02:43:12 -05:00
|
|
|
.carousel-item.active,
|
|
|
|
.carousel-item-next,
|
|
|
|
.carousel-item-prev {
|
2017-07-01 19:48:46 -04:00
|
|
|
display: block;
|
2016-11-26 02:43:12 -05:00
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2018-10-31 03:45:39 -04:00
|
|
|
.carousel-item-next:not(.carousel-item-left),
|
2017-04-08 18:20:26 -04:00
|
|
|
.active.carousel-item-right {
|
2017-06-30 20:35:02 -04:00
|
|
|
transform: translateX(100%);
|
2017-04-08 18:20:26 -04:00
|
|
|
}
|
2016-12-04 22:52:49 -05:00
|
|
|
|
2018-10-31 03:45:39 -04:00
|
|
|
.carousel-item-prev:not(.carousel-item-right),
|
2017-04-08 18:20:26 -04:00
|
|
|
.active.carousel-item-left {
|
2017-06-30 20:35:02 -04:00
|
|
|
transform: translateX(-100%);
|
2012-01-15 21:40:17 -05:00
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2015-04-18 14:17:28 -04:00
|
|
|
|
2018-01-22 01:51:08 -05:00
|
|
|
//
|
|
|
|
// Alternate transitions
|
|
|
|
//
|
|
|
|
|
|
|
|
.carousel-fade {
|
|
|
|
.carousel-item {
|
|
|
|
opacity: 0;
|
|
|
|
transition-property: opacity;
|
2018-10-21 02:55:43 -04:00
|
|
|
transform: none;
|
2018-01-22 01:51:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-item.active,
|
|
|
|
.carousel-item-next.carousel-item-left,
|
|
|
|
.carousel-item-prev.carousel-item-right {
|
2018-10-29 16:11:50 -04:00
|
|
|
z-index: 1;
|
2018-01-22 01:51:08 -05:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active.carousel-item-left,
|
|
|
|
.active.carousel-item-right {
|
2018-10-29 16:11:50 -04:00
|
|
|
z-index: 0;
|
2018-01-22 01:51:08 -05:00
|
|
|
opacity: 0;
|
2019-07-30 11:30:23 -04:00
|
|
|
@include transition(opacity 0s $carousel-transition-duration);
|
2018-01-22 01:51:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-18 14:17:28 -04:00
|
|
|
//
|
2012-01-15 21:40:17 -05:00
|
|
|
// Left/right controls for nav
|
2015-04-18 14:17:28 -04:00
|
|
|
//
|
2012-01-15 21:40:17 -05:00
|
|
|
|
2016-12-05 02:19:54 -05:00
|
|
|
.carousel-control-prev,
|
|
|
|
.carousel-control-next {
|
2012-01-15 21:40:17 -05:00
|
|
|
position: absolute;
|
2012-09-26 14:20:27 -04:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2018-10-29 16:11:50 -04:00
|
|
|
z-index: 1;
|
2016-12-22 17:41:00 -05:00
|
|
|
// Use flex for alignment (1-3)
|
|
|
|
display: flex; // 1. allow flex styles
|
2016-12-22 17:47:28 -05:00
|
|
|
align-items: center; // 2. vertically center contents
|
|
|
|
justify-content: center; // 3. horizontally center contents
|
2014-12-02 17:02:35 -05:00
|
|
|
width: $carousel-control-width;
|
|
|
|
color: $carousel-control-color;
|
2013-02-16 05:47:15 -05:00
|
|
|
text-align: center;
|
2014-12-11 15:05:29 -05:00
|
|
|
opacity: $carousel-control-opacity;
|
2018-10-21 03:13:35 -04:00
|
|
|
@include transition($carousel-control-transition);
|
2012-01-15 21:40:17 -05:00
|
|
|
|
2013-01-02 17:39:21 -05:00
|
|
|
// Hover/focus state
|
2018-09-17 19:10:07 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $carousel-control-color;
|
2012-01-15 21:40:17 -05:00
|
|
|
text-decoration: none;
|
2014-12-11 15:05:29 -05:00
|
|
|
outline: 0;
|
2018-10-21 03:13:35 -04:00
|
|
|
opacity: $carousel-control-hover-opacity;
|
2012-01-15 21:40:17 -05:00
|
|
|
}
|
2016-12-05 00:39:46 -05:00
|
|
|
}
|
2016-12-05 00:54:04 -05:00
|
|
|
.carousel-control-prev {
|
|
|
|
left: 0;
|
2019-12-19 05:18:05 -05:00
|
|
|
background-image: if($enable-gradients, linear-gradient(90deg, rgba($black, .25), rgba($black, .001)), null);
|
2016-12-05 00:54:04 -05:00
|
|
|
}
|
|
|
|
.carousel-control-next {
|
|
|
|
right: 0;
|
2019-12-19 05:18:05 -05:00
|
|
|
background-image: if($enable-gradients, linear-gradient(270deg, rgba($black, .25), rgba($black, .001)), null);
|
2016-12-05 00:54:04 -05:00
|
|
|
}
|
2012-10-01 02:44:23 -04:00
|
|
|
|
2016-12-05 00:54:45 -05:00
|
|
|
// Icons for within
|
|
|
|
.carousel-control-prev-icon,
|
|
|
|
.carousel-control-next-icon {
|
2016-12-05 00:39:46 -05:00
|
|
|
display: inline-block;
|
2016-12-05 01:01:31 -05:00
|
|
|
width: $carousel-control-icon-width;
|
|
|
|
height: $carousel-control-icon-width;
|
2019-12-19 04:38:43 -05:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 50%;
|
|
|
|
background-size: 100% 100%;
|
2016-12-05 00:39:46 -05:00
|
|
|
}
|
2016-12-05 00:54:45 -05:00
|
|
|
.carousel-control-prev-icon {
|
2019-07-19 21:57:12 -04:00
|
|
|
background-image: escape-svg($carousel-control-prev-icon-bg);
|
2016-12-05 00:39:46 -05:00
|
|
|
}
|
2016-12-05 00:54:45 -05:00
|
|
|
.carousel-control-next-icon {
|
2019-07-19 21:57:12 -04:00
|
|
|
background-image: escape-svg($carousel-control-next-icon-bg);
|
2012-01-15 21:40:17 -05:00
|
|
|
}
|
2012-10-01 02:44:23 -04:00
|
|
|
|
2015-04-18 14:17:28 -04:00
|
|
|
|
2013-02-16 05:47:15 -05:00
|
|
|
// Optional indicator pips
|
2013-08-05 14:59:32 -04:00
|
|
|
//
|
2017-01-01 15:00:17 -05:00
|
|
|
// Add an ordered list with the following class and add a list item for each
|
2013-08-05 14:59:32 -04:00
|
|
|
// slide your carousel holds.
|
|
|
|
|
2012-12-20 02:52:38 -05:00
|
|
|
.carousel-indicators {
|
|
|
|
position: absolute;
|
2016-12-05 01:05:05 -05:00
|
|
|
right: 0;
|
2018-08-26 07:53:36 -04:00
|
|
|
bottom: 0;
|
2016-12-05 01:05:05 -05:00
|
|
|
left: 0;
|
2019-08-26 02:42:44 -04:00
|
|
|
z-index: 2;
|
2016-12-22 17:31:33 -05:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2017-01-01 15:00:17 -05:00
|
|
|
padding-left: 0; // override <ol> default
|
2016-12-05 01:05:05 -05:00
|
|
|
// Use the .carousel-control's width as margin so we don't overlay those
|
|
|
|
margin-right: $carousel-control-width;
|
|
|
|
margin-left: $carousel-control-width;
|
2014-12-11 15:05:29 -05:00
|
|
|
list-style: none;
|
2012-12-20 02:52:38 -05:00
|
|
|
|
|
|
|
li {
|
2018-08-26 07:53:36 -04:00
|
|
|
box-sizing: content-box;
|
2017-07-01 19:48:46 -04:00
|
|
|
flex: 0 1 auto;
|
2017-06-30 20:41:04 -04:00
|
|
|
width: $carousel-indicator-width;
|
2016-12-04 23:14:33 -05:00
|
|
|
height: $carousel-indicator-height;
|
2016-12-22 17:31:33 -05:00
|
|
|
margin-right: $carousel-indicator-spacer;
|
|
|
|
margin-left: $carousel-indicator-spacer;
|
2012-12-20 02:52:38 -05:00
|
|
|
text-indent: -999px;
|
2018-04-16 09:09:53 -04:00
|
|
|
cursor: pointer;
|
2018-07-25 00:15:05 -04:00
|
|
|
background-color: $carousel-indicator-active-bg;
|
2018-08-26 07:53:36 -04:00
|
|
|
background-clip: padding-box;
|
|
|
|
// Use transparent borders to increase the hit area by 10px on top and bottom.
|
|
|
|
border-top: $carousel-indicator-hit-area-height solid transparent;
|
|
|
|
border-bottom: $carousel-indicator-hit-area-height solid transparent;
|
2019-10-01 09:14:43 -04:00
|
|
|
opacity: $carousel-indicator-opacity;
|
2018-07-25 00:15:05 -04:00
|
|
|
@include transition($carousel-indicator-transition);
|
2012-12-20 02:52:38 -05:00
|
|
|
}
|
2016-02-17 00:00:10 -05:00
|
|
|
|
2012-12-20 02:52:38 -05:00
|
|
|
.active {
|
2019-10-01 09:14:43 -04:00
|
|
|
opacity: $carousel-indicator-active-opacity;
|
2012-12-20 02:52:38 -05:00
|
|
|
}
|
|
|
|
}
|
2012-01-15 21:40:17 -05:00
|
|
|
|
2015-04-18 14:17:28 -04:00
|
|
|
|
2013-02-16 05:47:15 -05:00
|
|
|
// Optional captions
|
2015-04-18 14:17:28 -04:00
|
|
|
//
|
2017-01-01 15:00:17 -05:00
|
|
|
//
|
2015-04-18 14:17:28 -04:00
|
|
|
|
2013-02-16 05:47:15 -05:00
|
|
|
.carousel-caption {
|
|
|
|
position: absolute;
|
2018-12-14 11:54:44 -05:00
|
|
|
right: (100% - $carousel-caption-width) / 2;
|
2019-10-12 08:09:04 -04:00
|
|
|
bottom: $carousel-caption-spacer;
|
2018-12-14 11:54:44 -05:00
|
|
|
left: (100% - $carousel-caption-width) / 2;
|
2019-10-12 08:09:04 -04:00
|
|
|
padding-top: $carousel-caption-padding-y;
|
|
|
|
padding-bottom: $carousel-caption-padding-y;
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $carousel-caption-color;
|
2013-04-02 19:17:04 -04:00
|
|
|
text-align: center;
|
2013-02-16 05:47:15 -05:00
|
|
|
}
|
2020-09-24 16:16:20 -04:00
|
|
|
|
|
|
|
// Dark mode carousel
|
|
|
|
|
|
|
|
.carousel-dark {
|
|
|
|
.carousel-control-prev-icon,
|
|
|
|
.carousel-control-next-icon {
|
|
|
|
filter: $carousel-dark-control-icon-filter;
|
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-indicators li {
|
|
|
|
background-color: $carousel-dark-indicator-active-bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-caption {
|
|
|
|
color: $carousel-dark-caption-color;
|
|
|
|
}
|
|
|
|
}
|