Fix (image): Hide focus outline in the "insert image via URL" form. Closes #7973.
@@ -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;
@@ -7,7 +7,7 @@
padding: 0 0 var(--ck-spacing-large);
&:focus {
- /* https://github.com/ckeditor/ckeditor5-link/issues/90 */
outline: none;
}
@@ -14,7 +14,7 @@
padding: var(--ck-spacing-standard);