TinyMCE bug fix on CSS #923
This commit is contained in:
parent
1dc3f067dc
commit
f9f556e639
|
@ -1,7 +1,7 @@
|
|||
.mce-tinymce,
|
||||
.mce-stack-layout,
|
||||
.mce-edit-area{
|
||||
display: flex!important;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
align-items: stretch;
|
||||
|
|
|
@ -44,10 +44,7 @@ class pluginTinymce extends Plugin {
|
|||
if (!in_array($GLOBALS['ADMIN_CONTROLLER'], $this->loadOnController)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$html = '<link rel="stylesheet" href="'.$this->htmlPath().'css/bludit.css">'.PHP_EOL;
|
||||
$html .= '<script src="'.$this->htmlPath().'tinymce/tinymce.min.js"></script>';
|
||||
return $html;
|
||||
return '<script src="'.$this->htmlPath().'tinymce/tinymce.min.js"></script>';
|
||||
}
|
||||
|
||||
public function adminBodyEnd()
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue