Commit e47f94ca authored by catch's avatar catch
Browse files

Issue #3291047 by Wim Leers, Spokje: Move Quick Edit-specific styling of...

Issue #3291047 by Wim Leers, Spokje: Move Quick Edit-specific styling of CKEditor 4 & 5 into Quick Edit module
parent 355a1a68
Loading
Loading
Loading
Loading
+0 −14
Original line number Diff line number Diff line
@@ -23,17 +23,3 @@
  font-size: 14px;
  -webkit-touch-callout: none;
}

/**
 * Adjust the style of in-place editing CKEditor instances.
 */
.quickedit-toolgroup.wysiwyg-main .cke_chrome,
.quickedit-toolgroup.wysiwyg-main .cke_inner,
.quickedit-toolgroup.wysiwyg-main .cke_top {
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
  background: transparent;
  box-shadow: none;
}
+0 −3
Original line number Diff line number Diff line
@@ -17,9 +17,6 @@ drupal.ckeditor5.internal:
drupal.ckeditor5:
  js:
    js/ckeditor5.js: {}
  css:
    theme:
      css/quickedit.css: { }
  dependencies:
    - core/jquery
    - core/once
+18 −0
Original line number Diff line number Diff line
/**
 * @file
 * Functional styles for the CKEditor-based formatted text in-place editor.
 */

/**
 * Adjust the style of in-place editing CKEditor instances.
 */
.quickedit-toolgroup.wysiwyg-main .cke_chrome,
.quickedit-toolgroup.wysiwyg-main .cke_inner,
.quickedit-toolgroup.wysiwyg-main .cke_top {
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
  background: transparent;
  box-shadow: none;
}
+9 −0
Original line number Diff line number Diff line
/**
 * @file
 * Functional styles for the CKEditor 5-based formatted text in-place editor.
 */

.quickedit-toolgroup.wysiwyg-main .ck.ck-toolbar {
  border: none;
  background: none;
}
+4 −0
Original line number Diff line number Diff line
@@ -50,6 +50,10 @@ quickedit.inPlaceEditor.form:

quickedit.inPlaceEditor.formattedText:
  version: VERSION
  css:
    component:
      css/editors/formattedText.ckeditor.css: {}
      css/editors/formattedText.ckeditor5.css: {}
  js:
    js/editors/formattedTextEditor.js: { attributes: { defer: true } }
  dependencies:
Loading