Remove redundant animation states

This commit is contained in:
Martijn Cuppens 2020-08-03 20:11:15 +02:00
parent fb2c85e309
commit 5f545eaf8c
5 changed files with 0 additions and 55 deletions

View File

@ -10951,21 +10951,12 @@ video {
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes ping {
0% {
transform: scale(1);
opacity: 1;
}
75%, 100% {
transform: scale(2);
opacity: 0;
@ -10973,10 +10964,6 @@ video {
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: .5;
}

View File

@ -14373,21 +14373,12 @@ video {
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes ping {
0% {
transform: scale(1);
opacity: 1;
}
75%, 100% {
transform: scale(2);
opacity: 0;
@ -14395,10 +14386,6 @@ video {
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: .5;
}

View File

@ -11925,21 +11925,12 @@ video {
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes ping {
0% {
transform: scale(1);
opacity: 1;
}
75%, 100% {
transform: scale(2);
opacity: 0;
@ -11947,10 +11938,6 @@ video {
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: .5;
}

View File

@ -14373,21 +14373,12 @@ video {
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes ping {
0% {
transform: scale(1);
opacity: 1;
}
75%, 100% {
transform: scale(2);
opacity: 0;
@ -14395,10 +14386,6 @@ video {
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: .5;
}

View File

@ -631,15 +631,12 @@ module.exports = {
},
keyframes: {
spin: {
from: { transform: 'rotate(0deg)' },
to: { transform: 'rotate(360deg)' },
},
ping: {
'0%': { transform: 'scale(1)', opacity: '1' },
'75%, 100%': { transform: 'scale(2)', opacity: '0' },
},
pulse: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '.5' },
},
bounce: {