@@ -20,5 +20,5 @@
border-left: 1px solid var(--ck-color-base-text);
margin-left: -1px;
outline: solid 1px hsla(0, 0%, 100%, .5);
- animation: ck-widget-type-around-fake-caret-pulse linear 1s infinite normal forwards;
+ animation: ck-fake-caret-pulse linear 1s infinite normal forwards;
}
@@ -0,0 +1,22 @@
+/*
+ * 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% {
+ 50% {
+ opacity: 0;
+ 99% {
+ 100% {
+}
@@ -3,6 +3,7 @@
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
+@import "./_animations.css";
@import "./_colors.css";
@import "./_disabled.css";
@import "./_focus.css";
@@ -129,7 +129,7 @@
& .ck-widget__type-around__fake-caret {
pointer-events: none;
height: 1px;
/*
* The semi-transparent-outline+background combo improves the contrast
@@ -250,21 +250,3 @@
box-shadow: 0 0 0 5px hsla(var(--ck-color-focus-border-coordinates), var(--ck-color-widget-type-around-button-radar-start-alpha));
-
-@keyframes ck-widget-type-around-fake-caret-pulse {
- 0% {
- opacity: 1;
- }
- 49% {
- 50% {
- opacity: 0;
- 99% {
- 100% {
-}