Explorar el Código

Merge pull request #8308 from ckeditor/i/7973

Fix (image): Hide focus outline in the "insert image via URL" form. Closes #7973.
Maciej hace 5 años
padre
commit
d3975f8436

+ 7 - 0
packages/ckeditor5-image/theme/imageinsertformrowview.css

@@ -3,6 +3,13 @@
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
+.ck.ck-image-insert-form {
+	&:focus {
+		/* See: https://github.com/ckeditor/ckeditor5/issues/4773 */
+		outline: none;
+	}
+}
+
 .ck.ck-form__row {
 	display: flex;
 	flex-direction: row;

+ 1 - 1
packages/ckeditor5-theme-lark/theme/ckeditor5-table/form.css

@@ -7,7 +7,7 @@
 	padding: 0 0 var(--ck-spacing-large);
 
 	&:focus {
-		/* https://github.com/ckeditor/ckeditor5-link/issues/90 */
+		/* See: https://github.com/ckeditor/ckeditor5/issues/4773 */
 		outline: none;
 	}
 

+ 1 - 1
packages/ckeditor5-theme-lark/theme/ckeditor5-ui/components/responsive-form/responsiveform.css

@@ -14,7 +14,7 @@
 	padding: var(--ck-spacing-standard);
 
 	&:focus {
-		/* https://github.com/ckeditor/ckeditor5-link/issues/90 */
+		/* See: https://github.com/ckeditor/ckeditor5/issues/4773 */
 		outline: none;
 	}