我想从tinyMCE版本4文件中删除搜索按钮,如下图:
我已经尝试过此设置:
body: [{
name: 'href',
type: 'textbox',
filetype: 'file',
},
但是,当我单击“插入图片”操作时,浏览按钮会正常显示。
最佳答案
我能够使用CSS解决此问题,采用“ aria-label”属性并将显示内容设置为无。
.mce-btn.mce-open.mce-abs-layout-item.mce-last[aria-label="Upload image"] {
display: none; !important
}