Issue #2552187 by Wim Leers, LewisNyman: Follow-up for #2395853: CKEditor is loading system.modules.css, which no longer exists

8.0.x
Alex Pott 2015-08-19 00:41:13 +01:00
parent 46ffe7005b
commit 55f6f4259b
2 changed files with 2 additions and 2 deletions

View File

@ -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());

View File

@ -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'),
);
}