Change spin animation name

pull/7957/head
Kevin Gutiérrez 2021-11-05 13:54:34 -05:00 zatwierdzone przez LB (Ben Johnston)
rodzic e6f7c62360
commit 131cd076b7
5 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -7,6 +7,7 @@ Changelog
* Added Aging Pages report (Tidjani Dia)
* Add more SketchFab oEmbed patterns for models (Tom Usher)
* Fix: Accessibility fixes for Windows high contrast mode; Dashboard icons colour and contrast (Sakshi Uppoor)
* Fix: Rename additional 'spin' CSS animations to avoid clashes with other libraries (Kevin Gutiérrez)
2.15.1 (11.11.2021)

Wyświetl plik

@ -27,7 +27,7 @@
top: 50%;
margin: -15px 0 0 -15px;
font-family: wagtail;
animation: spin 0.5s infinite linear;
animation: spin-wag 0.5s infinite linear;
content: map-get($icons, 'spinner');
z-index: 2;
color: $color-teal;

Wyświetl plik

@ -3,5 +3,5 @@
display: inline-block;
width: 1em;
height: 1em;
animation: spin 0.5s infinite linear;
animation: spin-wag 0.5s infinite linear;
}

Wyświetl plik

@ -18,6 +18,7 @@
### Bug fixes
* Accessibility fixes for Windows high contrast mode; Dashboard icons colour and contrast (Sakshi Uppoor)
* Rename additional 'spin' CSS animations to avoid clashes with other libraries (Kevin Gutiérrez)
## Upgrade considerations

Wyświetl plik

@ -788,12 +788,12 @@
<style>
.spinning {
animation-name: spin;
animation-name: spin-wag;
animation-duration: 500ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes spin {
@keyframes spin-wag {
from {
transform: translateY(0.6em) rotate(0deg);
} to {