Issue #2552187 by Wim Leers, LewisNyman: Follow-up for #2395853: CKEditor is loading system.modules.css, which no longer exists
parent
46ffe7005b
commit
55f6f4259b
|
@ -416,7 +416,7 @@ class CKEditor extends EditorBase implements ContainerFactoryPluginInterface {
|
|||
public function buildContentsCssJSSetting(EditorEntity $editor) {
|
||||
$css = array(
|
||||
drupal_get_path('module', 'ckeditor') . '/css/ckeditor-iframe.css',
|
||||
drupal_get_path('module', 'system') . '/css/system.module.css',
|
||||
drupal_get_path('module', 'system') . '/css/components/align.module.css',
|
||||
);
|
||||
$this->moduleHandler->alter('ckeditor_css', $css, $editor);
|
||||
$css = array_merge($css, _ckeditor_theme_css());
|
||||
|
|
|
@ -477,7 +477,7 @@ class CKEditorTest extends KernelTestBase {
|
|||
protected function getDefaultContentsCssConfig() {
|
||||
return array(
|
||||
file_create_url('core/modules/ckeditor/css/ckeditor-iframe.css'),
|
||||
file_create_url('core/modules/system/css/system.module.css'),
|
||||
file_create_url('core/modules/system/css/components/align.module.css'),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue