Skip to content

Commit

Permalink
Merge pull request #8308 from ckeditor/i/7973
Browse files Browse the repository at this point in the history
Fix (image): Hide focus outline in the "insert image via URL" form. Closes #7973.
  • Loading branch information
jodator committed Oct 21, 2020
2 parents 4e98872 + 5fedef3 commit d3975f8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions packages/ckeditor5-image/theme/imageinsertformrowview.css
Expand Up @@ -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;
Expand Down
Expand Up @@ -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;
}

Expand Down
Expand Up @@ -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;
}

Expand Down

0 comments on commit d3975f8

Please sign in to comment.