Use correct value order (#32121)

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
Martijn Cuppens 2020-11-11 17:27:12 +01:00 committed by GitHub
parent bc4da38c8b
commit 3612a1e463
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -9,7 +9,7 @@
height: $btn-close-height; height: $btn-close-height;
padding: $btn-close-padding-y $btn-close-padding-x; padding: $btn-close-padding-y $btn-close-padding-x;
color: $btn-close-color; color: $btn-close-color;
background: transparent escape-svg($btn-close-bg) no-repeat center center / $btn-close-width auto; // include transparent for button elements background: transparent escape-svg($btn-close-bg) center / $btn-close-width auto no-repeat; // include transparent for button elements
border: 0; // for button elements border: 0; // for button elements
@include border-radius(); @include border-radius();
opacity: $btn-close-opacity; opacity: $btn-close-opacity;

View File

@ -34,7 +34,7 @@
@if $enable-transitions { @if $enable-transitions {
.progress-bar-animated { .progress-bar-animated {
animation: progress-bar-stripes $progress-bar-animation-timing; animation: $progress-bar-animation-timing progress-bar-stripes;
@if $enable-reduced-motion { @if $enable-reduced-motion {
@media (prefers-reduced-motion: reduce) { @media (prefers-reduced-motion: reduce) {

View File

@ -414,8 +414,8 @@ button {
// Credit https://github.com/suitcss/base/ // Credit https://github.com/suitcss/base/
button:focus { button:focus {
outline: 1px dotted; outline: dotted 1px;
outline: 5px auto -webkit-focus-ring-color; outline: -webkit-focus-ring-color auto 5px;
} }
// 1. Remove the margin in Firefox and Safari // 1. Remove the margin in Firefox and Safari

View File

@ -15,7 +15,7 @@
border-right-color: transparent; border-right-color: transparent;
// stylelint-disable-next-line property-disallowed-list // stylelint-disable-next-line property-disallowed-list
border-radius: 50%; border-radius: 50%;
animation: spinner-border $spinner-animation-speed linear infinite; animation: $spinner-animation-speed linear infinite spinner-border;
} }
.spinner-border-sm { .spinner-border-sm {
@ -47,7 +47,7 @@
// stylelint-disable-next-line property-disallowed-list // stylelint-disable-next-line property-disallowed-list
border-radius: 50%; border-radius: 50%;
opacity: 0; opacity: 0;
animation: spinner-grow $spinner-animation-speed linear infinite; animation: $spinner-animation-speed linear infinite spinner-grow;
} }
.spinner-grow-sm { .spinner-grow-sm {