8
0
فهرست منبع

Fixed: ck-focus-shadow mixin in Firefox.

Aleksander Nowodzinski 10 سال پیش
والد
کامیت
999ac5f70d
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      packages/ckeditor5-theme-lark/theme/helpers/_states.scss

+ 4 - 0
packages/ckeditor5-theme-lark/theme/helpers/_states.scss

@@ -16,7 +16,11 @@
  */
 @mixin ck-focus-shadow() {
 	&:focus {
+		outline: thin dotted;
 		outline: 5px auto -webkit-focus-ring-color;
+
+		// To avoid collision with border in Firefox.
+		outline-offset: -2px;
 	}
 }