0

我正在使用 jodit-react 编辑器。老实说,文档有点混乱。这是我当前将自定义样式添加到 WSYIWYG 编辑器的配置,但我无法更改工具栏的背景颜色和文本颜色。

const config = {
        readonly: false, // all options from https://xdsoft.net/jodit/doc/
        height: '450px',
        width: '100%',
        enableDragAndDropFileToEditor: true,
        buttons: [
            'source',
            '|',
            'bold',
            'italic',
            'underline',
            '|',
            'ul',
            'ol',
            '|',
            'font',
            'fontsize',
            'brush',
            'paragraph',
            '|',
            'image',
            'table',
            'link',
            '|',
            'left',
            'center',
            'right',
            'justify',
            '|',
            'undo',
            'redo',
            '|',
            'hr',
            'eraser',
            'fullsize',
        ],
        uploader: { insertImageAsBase64URI: true },
        removeButtons: ['brush', 'file'],
        showXPathInStatusbar: false,
        showCharsCounter: false,
        showWordsCounter: false,
        toolbarAdaptive: true,
        toolbarSticky: true,
        style: {
            background: '#27272E',
            color: 'rgba(255,255,255,0.5)',
        },
    };
4

1 回答 1

2

我相信,你可以检查这个

工具栏https ://xdsoft.net/jodit/doc/options/toolbar/

类型: [布尔 | 字符串 | HTML元素]。

于 2021-06-22T23:38:52.297 回答