| 12345678910111213141516171819202122 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- @keyframes ck-fake-caret-pulse {
- 0% {
- opacity: 1;
- }
- 49% {
- opacity: 1;
- }
- 50% {
- opacity: 0;
- }
- 99% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
|