staff 类应用于 <body> 元素。
因此,您可以像这样定位任何按钮:
body:not(.staff) .d-editor-button-bar {
/* 隐藏所有内容
* (可见按钮,包括弹出菜单按钮)
*/
button,
.toolbar-popup-menu-options {
display: none;
}
}
body:not(.staff) .d-editor-button-bar {
/* 隐藏特定按钮 */
button {
/* 行内按钮 */
&.align_justify_button,
&.align_right_button
/* ... */
{
display: none;
}
/* 弹出菜单 */
&.toolbar-popup-menu-options {
[data-name="Float left"],
/* ... */ {
display: none;
}
}
}
}
这有帮助吗?
另外,您可能对这个组件感兴趣: