Skip to content

Commit

Permalink
Merge pull request #8761 from ckeditor/i/8699-dropdown-shadow
Browse files Browse the repository at this point in the history
Fix (theme-lark): The dropdown button should not have an inner shadow in the active state. Closes #8699.
  • Loading branch information
oleq committed Jan 12, 2021
2 parents caa98d8 + 6fc38c0 commit 395d954
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,16 @@
&.ck-dropdown__button_label-width_auto .ck-button__label {
width: auto;
}

/* https://github.com/ckeditor/ckeditor5/issues/8699 */
&.ck-off:active,
&.ck-on:active {
box-shadow: none;

&:focus {
@mixin ck-box-shadow var(--ck-focus-outer-shadow);
}
}
}
}

Expand Down

0 comments on commit 395d954

Please sign in to comment.