我在我的init调用中使用了这段代码来指向我的主要css文件:
<script>
tinymce.init({
selector: 'textarea',
content_css:'default.css'
});
这很好用,在CSS中我使用它来改变编辑器主体的背景颜色:
.mce-content-body {
background: #474F52;
}
我现在想要为工具栏颜色添加适当的CSS覆盖 - 按钮颜色和文本颜色按照:
请帮忙!我搜索得无处可寻。
答案 0 :(得分:2)
/* toolbar */
.mce-toolbar-grp {
background-color: #000 !important; /* uses !important or override .mce-panel background-color/image */
background-image: none !important;
}
/* text color */
#tinymce {
color: #dd9900;
}
/* button text color */
.mce-ico {
color: #dd9900;
}
/* button background color */
.mce-btn button {
background-color: #000000;
}