tinymce:在左侧对齐对话框 window 的页脚按钮?

tinymce: align footer buttons of a dialog window on the left?

如果用户使用的是小屏幕设备,则可能看不到页脚按钮。需要将按钮向左对齐以避免出现此问题。

我已经尝试使用 CSS 来实现这一点,但是任何对话框 window 元素上的左浮动或文本左对齐都没有起到作用。

Here is an example picture

发现tinymce在确认按钮上使用内联样式"left: 410px",在取消按钮上使用"left: 493px"。在按钮上强制使用左侧样式对我有用:

.mce-widget.mce-btn.mce-abs-layout-item.mce-first {
  left: 10px !important;
}
.mce-widget.mce-btn.mce-abs-layout-item.mce-last {
  left: 70px !important;
 }