0

我正在使用 tinymce 在 alignLeft、alignRight 等工具栏中提供的一些选项,它们将以黑色显示。我只想更改随它提供的图标的颜色。

请让我知道该怎么做?

PS我的编辑器代码:

 <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",

          }}
 />
4

1 回答 1

1

简单的soms css

.tox .tox-tbtn svg {
    fill: #ff0000!important;
}
于 2020-06-17T12:45:07.923 回答