如何在 tinymce 编辑器 (v 5.1.2) 中更改内置工具栏图标的颜色
How do I change colour of inbuilt toolbar icons in tinymce editor(v 5.1.2)
我在工具栏中使用 tinymce 提供的一些选项,如 alignLeft、alignRight 等,这些选项将以黑色显示。我只想更改随附图标的颜色。
请告诉我怎么做?
P.S。我的编辑器代码:
<Editor
init={{
selector: "textarea",
paste_data_images: true,
automatic_uploads: true,
plugins: [
"lists table link image paste help wordcount code autoresize",
],
toolbar:
"undo redo | formatselect | bold italic forecolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | image help",
}}
/>
简单的 soms css
.tox .tox-tbtn svg {
fill: #ff0000!important;
}
我在工具栏中使用 tinymce 提供的一些选项,如 alignLeft、alignRight 等,这些选项将以黑色显示。我只想更改随附图标的颜色。
请告诉我怎么做?
P.S。我的编辑器代码:
<Editor
init={{
selector: "textarea",
paste_data_images: true,
automatic_uploads: true,
plugins: [
"lists table link image paste help wordcount code autoresize",
],
toolbar:
"undo redo | formatselect | bold italic forecolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | image help",
}}
/>
简单的 soms css
.tox .tox-tbtn svg {
fill: #ff0000!important;
}