我能够使用Javascript和外部CSS将textarea的背景更改为灰色,但无法将面板/工具栏区域更改为灰色。工具栏区域仍然保持白色,这对我所需要的任何帮助都不是很好。
我为此使用了Javascript函数
editor.getBody().style.backgroundColor = "#F5f5f5";
和具有此功能的CSS选择器
.mce-content-body {
background: #F5f5f5 ;
}
/* toolbar */
.mce-toolbar-grp {
background-color: #F5f5f5 !important; /* uses !important or override .mce-panel background-color/image */
background-image: none !important;
}
不幸的是,当文本区域更改为灰色时,工具栏保持白色