如何更改 TinyMCE 编辑器中控制按钮的样式

发布于 2024-12-20 11:40:17 字数 154 浏览 2 评论 0原文

我正在使用 TinyMCE 提供富文本格式选项,我想更改按钮的样式编辑。我想让它像堆栈溢出的编辑器一样整洁。是否可以在无需编写自定义 TinyMCE 编辑器的情况下完成?

I am using TinyMCE to provide rich text formatting options and I want to change the styling of the buttons in the editor. I want to make it neater like the editor that stack overflow has. Can it be done without having to write my custom TinyMCE editor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月朦胧 2024-12-27 11:40:17

您可以使用 editor_css (tinymce init设置)

editor_css : '../../../js/tiny_mce/css/editor.css',

CSS将覆盖用于tinymce UI(包括按钮)的CSS。
默认 CSS 取决于所选模式。
例如,她是我的 editor.css 的一部分

.defaultSkin span.mce_delete {background:url(../../../editor/images/delete.gif)}
.defaultSkin span.mce_rename {background:url(../../../editor/images/help.gif)}

You can define what image to use for your buttons using the editor_css (a tinymce init setting)

editor_css : '../../../js/tiny_mce/css/editor.css',

The css will overwrite the css used for the tinymce UI including buttons.
The default css depends on the selected mode.
Her is a part of my editor.css as example

.defaultSkin span.mce_delete {background:url(../../../editor/images/delete.gif)}
.defaultSkin span.mce_rename {background:url(../../../editor/images/help.gif)}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文