metadata.toml 672 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. longDescription = """
  2. Removes at-rules which have the same identifier as another; for example two
  3. instances of `@keyframes one`. As the browser will only count the *last* of
  4. these declarations, all others can safely be removed.
  5. """
  6. inputExample = """
  7. @keyframes one {
  8. 0% {
  9. opacity: 1;
  10. }
  11. to {
  12. opacity: 0;
  13. }
  14. }
  15. @keyframes one {
  16. 0% {
  17. transform: rotate(0deg);
  18. }
  19. to {
  20. transform: rotate(359deg);
  21. }
  22. }
  23. .box {
  24. animation-name: one;
  25. }
  26. """
  27. outputExample = """
  28. @keyframes one {
  29. 0% {
  30. transform: rotate(0deg);
  31. }
  32. to {
  33. transform: rotate(359deg);
  34. }
  35. }
  36. .box {
  37. animation-name: one;
  38. }
  39. """