Unverified Commit 5f3cb8cf authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3306216 by bnjmnm, Wim Leers, Reinmar: Contrast perception issues with...

Issue #3306216 by bnjmnm, Wim Leers, Reinmar: Contrast perception issues with icons including low-opacity fills

(cherry picked from commit 226fa76b)
parent 86769572
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -17,6 +17,9 @@ drupal.ckeditor5.internal:
drupal.ckeditor5:
  js:
    js/ckeditor5.js: {}
  css:
    theme:
      css/editor.css: { }
  dependencies:
    - core/jquery
    - core/once
+10 −0
Original line number Diff line number Diff line
/**
 * @file
 * Styles for the CKEditor 5 editor.
 */

/* Convert low opacity icons to full opacity. */
.ck-button:not(.ck-disabled) .ck-icon * {
  opacity: 1 !important;
  fill-opacity: 1 !important;
}