如何使用颜色列表中的内联ckeditor更改容器的颜色。我知道我们有“colorbutton”插件来更改块元素的文本颜色和背景颜色,但我需要更改整个容器颜色。 Here is the image about my requirement
答案 0 :(得分:0)
修改了colorbutton按钮ckeditor插件。 在renderColors()方法中添加以下条件。
if(type != 'back'){
editor.applyStyle( new CKEDITOR.style( colorStyle, { color: color } ) );
}else{
editor.container.$.style.backgroundColor=color;
}