Skip to content

Commit 84814be

Browse files
committed
minor symfony#31058 Remove redundant animation prefixes (MartijnCuppens)
This PR was merged into the 3.4 branch. Discussion ---------- Remove redundant animation prefixes | Q | A | ------------- | --- | Branch? | 3.4 <!-- see below --> | Bug fix? | yes | New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | / <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | / <!-- required for new features --> Like symfony#31055, a small cleanup of CSS. CSS animations can be used safely without any prefixes. Commits ------- 3655bcf Remove redundant animation prefixes
2 parents a292740 + 3655bcf commit 84814be

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar.css.twig

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -363,21 +363,8 @@ div.sf-toolbar .sf-toolbar-block a:hover {
363363
text-align: right;
364364
}
365365
.sf-ajax-request-loading {
366-
-webkit-animation: sf-blink .5s ease-in-out infinite;
367-
-o-animation: sf-blink .5s ease-in-out infinite;
368-
-moz-animation: sf-blink .5s ease-in-out infinite;
369366
animation: sf-blink .5s ease-in-out infinite;
370367
}
371-
@-webkit-keyframes sf-blink {
372-
0% { background: #222; }
373-
50% { background: #444; }
374-
100% { background: #222; }
375-
}
376-
@-moz-keyframes sf-blink {
377-
0% { background: #222; }
378-
50% { background: #444; }
379-
100% { background: #222; }
380-
}
381368
@keyframes sf-blink {
382369
0% { background: #222; }
383370
50% { background: #444; }

0 commit comments

Comments
 (0)