mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-06 13:46:42 +02:00
- Update ScssDocs tags where appropriate - Removed a null Sass variable, $table-th-font-weight - Removed $table-caption-color because we put table Sass vars in the _tables.scss file away from the _reboot.scss file - Fix docs styles as needed
279 lines
8.9 KiB
SCSS
279 lines
8.9 KiB
SCSS
@use "config" as *;
|
|
@use "variables" as *;
|
|
@use "colors" as *;
|
|
@use "mixins/transition" as *;
|
|
@use "mixins/clearfix" as *;
|
|
@use "mixins/gradients" as *;
|
|
@use "mixins/color-mode" as *;
|
|
@use "vendor/rfs" as *;
|
|
|
|
// scss-docs-start carousel-variables
|
|
$carousel-control-color: $white !default;
|
|
$carousel-control-width: 15% !default;
|
|
$carousel-control-opacity: .5 !default;
|
|
$carousel-control-hover-opacity: .9 !default;
|
|
$carousel-control-transition: opacity .15s ease !default;
|
|
$carousel-control-icon-filter: null !default;
|
|
|
|
$carousel-indicator-width: 30px !default;
|
|
$carousel-indicator-height: 3px !default;
|
|
$carousel-indicator-hit-area-height: 10px !default;
|
|
$carousel-indicator-spacer: 3px !default;
|
|
$carousel-indicator-opacity: .5 !default;
|
|
$carousel-indicator-active-bg: $white !default;
|
|
$carousel-indicator-active-opacity: 1 !default;
|
|
$carousel-indicator-transition: opacity .6s ease !default;
|
|
|
|
$carousel-caption-width: 70% !default;
|
|
$carousel-caption-color: $white !default;
|
|
$carousel-caption-padding-y: 1.25rem !default;
|
|
$carousel-caption-spacer: 1.25rem !default;
|
|
|
|
$carousel-control-icon-width: 2rem !default;
|
|
|
|
$carousel-control-prev-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/></svg>") !default;
|
|
$carousel-control-next-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>") !default;
|
|
|
|
$carousel-transition-duration: .6s !default;
|
|
$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)
|
|
// scss-docs-end carousel-variables
|
|
|
|
// scss-docs-start carousel-dark-variables
|
|
$carousel-dark-indicator-active-bg: $black !default; // Deprecated in v5.3.4
|
|
$carousel-dark-caption-color: $black !default; // Deprecated in v5.3.4
|
|
$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default; // Deprecated in v5.3.4
|
|
|
|
$carousel-indicator-active-bg-dark: $carousel-dark-indicator-active-bg !default;
|
|
$carousel-caption-color-dark: $carousel-dark-caption-color !default;
|
|
$carousel-control-icon-filter-dark: $carousel-dark-control-icon-filter !default;
|
|
// scss-docs-end carousel-dark-variables
|
|
|
|
// Notes on the classes:
|
|
//
|
|
// 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-start and .carousel-item-end is used to indicate where
|
|
// the active slide is heading.
|
|
// 3. .active.carousel-item is the current slide.
|
|
// 4. .active.carousel-item-start and .active.carousel-item-end is the current
|
|
// slide in its in-transition state. Only one of these occurs at a time.
|
|
// 5. .carousel-item-next.carousel-item-start and .carousel-item-prev.carousel-item-end
|
|
// is the upcoming slide in transition.
|
|
|
|
@layer components {
|
|
.carousel {
|
|
position: relative;
|
|
}
|
|
|
|
.carousel.pointer-event {
|
|
touch-action: pan-y;
|
|
}
|
|
|
|
.carousel-inner {
|
|
position: relative;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
@include clearfix();
|
|
}
|
|
|
|
.carousel-item {
|
|
position: relative;
|
|
display: none;
|
|
float: left;
|
|
width: 100%;
|
|
margin-right: -100%;
|
|
backface-visibility: hidden;
|
|
@include transition($carousel-transition);
|
|
}
|
|
|
|
.carousel-item.active,
|
|
.carousel-item-next,
|
|
.carousel-item-prev {
|
|
display: block;
|
|
}
|
|
|
|
.carousel-item-next:not(.carousel-item-start),
|
|
.active.carousel-item-end {
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.carousel-item-prev:not(.carousel-item-end),
|
|
.active.carousel-item-start {
|
|
transform: translateX(-100%);
|
|
}
|
|
|
|
|
|
//
|
|
// Alternate transitions
|
|
//
|
|
|
|
.carousel-fade {
|
|
.carousel-item {
|
|
opacity: 0;
|
|
transition-property: opacity;
|
|
transform: none;
|
|
}
|
|
|
|
.carousel-item.active,
|
|
.carousel-item-next.carousel-item-start,
|
|
.carousel-item-prev.carousel-item-end {
|
|
z-index: 1;
|
|
opacity: 1;
|
|
}
|
|
|
|
.active.carousel-item-start,
|
|
.active.carousel-item-end {
|
|
z-index: 0;
|
|
opacity: 0;
|
|
@include transition(opacity 0s $carousel-transition-duration);
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// Left/right controls for nav
|
|
//
|
|
|
|
.carousel-control-prev,
|
|
.carousel-control-next {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
// Use flex for alignment (1-3)
|
|
display: flex; // 1. allow flex styles
|
|
align-items: center; // 2. vertically center contents
|
|
justify-content: center; // 3. horizontally center contents
|
|
width: $carousel-control-width;
|
|
padding: 0;
|
|
color: $carousel-control-color;
|
|
text-align: center;
|
|
background: none;
|
|
filter: var(--#{$prefix}carousel-control-icon-filter);
|
|
border: 0;
|
|
opacity: $carousel-control-opacity;
|
|
@include transition($carousel-control-transition);
|
|
|
|
// Hover/focus state
|
|
&:hover,
|
|
&:focus {
|
|
color: $carousel-control-color;
|
|
text-decoration: none;
|
|
outline: 0;
|
|
opacity: $carousel-control-hover-opacity;
|
|
}
|
|
}
|
|
.carousel-control-prev {
|
|
left: 0;
|
|
background-image: if($enable-gradients, linear-gradient(90deg, rgba($black, .25), rgba($black, .001)), null);
|
|
}
|
|
.carousel-control-next {
|
|
right: 0;
|
|
background-image: if($enable-gradients, linear-gradient(270deg, rgba($black, .25), rgba($black, .001)), null);
|
|
}
|
|
|
|
// Icons for within
|
|
.carousel-control-prev-icon,
|
|
.carousel-control-next-icon {
|
|
display: inline-block;
|
|
width: $carousel-control-icon-width;
|
|
height: $carousel-control-icon-width;
|
|
background-repeat: no-repeat;
|
|
background-position: 50%;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.carousel-control-prev-icon {
|
|
background-image: escape-svg($carousel-control-prev-icon-bg) #{"/*rtl:" + escape-svg($carousel-control-next-icon-bg) + "*/"};
|
|
}
|
|
.carousel-control-next-icon {
|
|
background-image: escape-svg($carousel-control-next-icon-bg) #{"/*rtl:" + escape-svg($carousel-control-prev-icon-bg) + "*/"};
|
|
}
|
|
|
|
// Optional indicator pips/controls
|
|
//
|
|
// Add a container (such as a list) with the following class and add an item (ideally a focusable control,
|
|
// like a button) with data-bs-target for each slide your carousel holds.
|
|
|
|
.carousel-indicators {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 2;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 0;
|
|
// Use the .carousel-control's width as margin so we don't overlay those
|
|
margin-right: $carousel-control-width;
|
|
margin-bottom: 1rem;
|
|
margin-left: $carousel-control-width;
|
|
|
|
[data-bs-target] {
|
|
box-sizing: content-box;
|
|
flex: 0 1 auto;
|
|
width: $carousel-indicator-width;
|
|
height: $carousel-indicator-height;
|
|
padding: 0;
|
|
margin-right: $carousel-indicator-spacer;
|
|
margin-left: $carousel-indicator-spacer;
|
|
text-indent: -999px;
|
|
cursor: pointer;
|
|
background-color: var(--#{$prefix}carousel-indicator-active-bg);
|
|
background-clip: padding-box;
|
|
border: 0;
|
|
// 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;
|
|
opacity: $carousel-indicator-opacity;
|
|
@include transition($carousel-indicator-transition);
|
|
}
|
|
|
|
.active {
|
|
opacity: $carousel-indicator-active-opacity;
|
|
}
|
|
}
|
|
|
|
|
|
// Optional captions
|
|
//
|
|
//
|
|
|
|
.carousel-caption {
|
|
position: absolute;
|
|
right: (100% - $carousel-caption-width) * .5;
|
|
bottom: $carousel-caption-spacer;
|
|
left: (100% - $carousel-caption-width) * .5;
|
|
padding-top: $carousel-caption-padding-y;
|
|
padding-bottom: $carousel-caption-padding-y;
|
|
color: var(--#{$prefix}carousel-caption-color);
|
|
text-align: center;
|
|
}
|
|
|
|
// Dark mode carousel
|
|
|
|
@mixin carousel-dark() {
|
|
--#{$prefix}carousel-indicator-active-bg: #{$carousel-indicator-active-bg-dark};
|
|
--#{$prefix}carousel-caption-color: #{$carousel-caption-color-dark};
|
|
--#{$prefix}carousel-control-icon-filter: #{$carousel-control-icon-filter-dark};
|
|
}
|
|
|
|
.carousel-dark {
|
|
@include carousel-dark();
|
|
}
|
|
|
|
:root,
|
|
[data-bs-theme="light"] {
|
|
--#{$prefix}carousel-indicator-active-bg: #{$carousel-indicator-active-bg};
|
|
--#{$prefix}carousel-caption-color: #{$carousel-caption-color};
|
|
--#{$prefix}carousel-control-icon-filter: #{$carousel-control-icon-filter};
|
|
}
|
|
|
|
@if $enable-dark-mode {
|
|
@include color-mode(dark, true) {
|
|
@include carousel-dark();
|
|
}
|
|
}
|
|
}
|