_animations.css 326 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. @keyframes ck-fake-caret-pulse {
  6. 0% {
  7. opacity: 1;
  8. }
  9. 49% {
  10. opacity: 1;
  11. }
  12. 50% {
  13. opacity: 0;
  14. }
  15. 99% {
  16. opacity: 0;
  17. }
  18. 100% {
  19. opacity: 1;
  20. }
  21. }