Skip to content

Commit

Permalink
Merge pull request #16015 from tony/ck-color-image-caption-css-variab…
Browse files Browse the repository at this point in the history
…le-typo-fix

Other (image): Fixed a typo in the name of CSS custom property for the highlighted state of an image caption.

MINOR BREAKING CHANGE (image): The CSS custom property `--ck-color-image-caption-highligted-background` has been renamed to `--ck-color-image-caption-highlighted-background`. Please make sure to update your custom CSS accordingly.
  • Loading branch information
oleq authored Mar 21, 2024
2 parents d9a3d53 + 9354fd5 commit e9f0c13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ckeditor5-image/theme/imagecaption.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:root {
--ck-color-image-caption-background: hsl(0, 0%, 97%);
--ck-color-image-caption-text: hsl(0, 0%, 20%);
--ck-color-image-caption-highligted-background: hsl(52deg 100% 50%);
--ck-color-image-caption-highlighted-background: hsl(52deg 100% 50%);
}

/* Content styles */
Expand All @@ -28,7 +28,7 @@

@keyframes ck-image-caption-highlight {
0% {
background-color: var(--ck-color-image-caption-highligted-background);
background-color: var(--ck-color-image-caption-highlighted-background);
}

100% {
Expand Down

0 comments on commit e9f0c13

Please sign in to comment.