1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-20 23:41:29 +02:00

[ticket/15115] Fix errors

PHPBB3-15115
This commit is contained in:
hanakin
2017-03-19 16:15:33 -04:00
parent ae85c9e91d
commit 79f865bd56
5 changed files with 16 additions and 16 deletions

View File

@@ -1055,12 +1055,14 @@ fieldset.fields1 dl.pmlist dd.recipients {
animation: rotator 1s linear infinite;
}
/* stylelint-disable no-unknown-animations */
.spinner-path {
stroke-dasharray: 187;
stroke-dashoffset: 0;
transform-origin: center;
animation: dash 1s ease-in-out infinite, colors 4s ease-in-out infinite;
stroke-dasharray: 187;
stroke-dashoffset: 0;
}
/* stylelint-enable no-unknown-animations */
@keyframes rotator {
0% {
@@ -1078,13 +1080,13 @@ fieldset.fields1 dl.pmlist dd.recipients {
}
50% {
stroke-dashoffset: 46.75;
transform: rotate(135deg);
stroke-dashoffset: 46.75;
}
100% {
stroke-dashoffset: 187;
transform: rotate(450deg);
stroke-dashoffset: 187;
}
}