소스 검색

Animate the fake horizontal care from the full visibility onwards for faster feedback and better UX when navigating the document.

Aleksander Nowodzinski 5 년 전
부모
커밋
d5733aa014
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      packages/ckeditor5-theme-lark/theme/ckeditor5-widget/widgettypearound.css

+ 5 - 5
packages/ckeditor5-theme-lark/theme/ckeditor5-widget/widgettypearound.css

@@ -199,18 +199,18 @@
 
 @keyframes ck-widget-type-around-line-pulse {
 	0% {
-		background: hsla(0, 0%, 0%, 0);
+		background: hsla(0, 0%, 0%, 1);
 	}
 	49% {
-		background: hsla(0, 0%, 0%, 0);
+		background: hsla(0, 0%, 0%, 1);
 	}
 	50% {
-		background: hsla(0, 0%, 0%, 1);
+		background: hsla(0, 0%, 0%, 0);
 	}
 	99% {
-		background: hsla(0, 0%, 0%, 1);
+		background: hsla(0, 0%, 0%, 0);
 	}
 	100% {
-		background: hsla(0, 0%, 0%, 0);
+		background: hsla(0, 0%, 0%, 1);
 	}
 }