mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
4c7a3e8adf
* WIP: Mention variables, mixins, and loops in docs * Add Sass sections to component pages * add sass docs for forms and content * Update buttons.md * Remove empty mixins sections * Massive update to utilities and some consistency changes Co-authored-by: XhmikosR <xhmikosr@gmail.com>
70 lines
1.5 KiB
SCSS
70 lines
1.5 KiB
SCSS
//
|
|
// Rotating border
|
|
//
|
|
|
|
// scss-docs-start spinner-border-keyframes
|
|
@keyframes spinner-border {
|
|
to { transform: rotate(360deg) #{"/* rtl:ignore */"}; }
|
|
}
|
|
// scss-docs-end spinner-border-keyframes
|
|
|
|
.spinner-border {
|
|
display: inline-block;
|
|
width: $spinner-width;
|
|
height: $spinner-height;
|
|
vertical-align: text-bottom;
|
|
border: $spinner-border-width solid currentColor;
|
|
border-right-color: transparent;
|
|
// stylelint-disable-next-line property-disallowed-list
|
|
border-radius: 50%;
|
|
animation: $spinner-animation-speed linear infinite spinner-border;
|
|
}
|
|
|
|
.spinner-border-sm {
|
|
width: $spinner-width-sm;
|
|
height: $spinner-height-sm;
|
|
border-width: $spinner-border-width-sm;
|
|
}
|
|
|
|
//
|
|
// Growing circle
|
|
//
|
|
|
|
// scss-docs-start spinner-grow-keyframes
|
|
@keyframes spinner-grow {
|
|
0% {
|
|
transform: scale(0);
|
|
}
|
|
50% {
|
|
opacity: 1;
|
|
transform: none;
|
|
}
|
|
}
|
|
// scss-docs-end spinner-grow-keyframes
|
|
|
|
.spinner-grow {
|
|
display: inline-block;
|
|
width: $spinner-width;
|
|
height: $spinner-height;
|
|
vertical-align: text-bottom;
|
|
background-color: currentColor;
|
|
// stylelint-disable-next-line property-disallowed-list
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
animation: $spinner-animation-speed linear infinite spinner-grow;
|
|
}
|
|
|
|
.spinner-grow-sm {
|
|
width: $spinner-width-sm;
|
|
height: $spinner-height-sm;
|
|
}
|
|
|
|
@if $enable-reduced-motion {
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.spinner-border,
|
|
.spinner-grow {
|
|
animation-duration: $spinner-animation-speed * 2;
|
|
}
|
|
}
|
|
}
|