我正在尝试在使用 GUI 构建的谷歌电子表格应用程序中更改模式弹出窗口的背景颜色。.setStyleAttribute() 似乎在这里不起作用。我还尝试在加载 GUI 组件后设置样式 - 没有骰子。
var app = UiApp.createApplication().setHeight("400") // - works fine, height of modal-dialog is pushed by UiApp height
.setStyleAttribute("background", "black"); // works for Ui element - not for outermost modal-dialog
//load the GUI component
app.add(app.loadComponent("GradeChallengesGUI"));
也许无法更改模态对话框的背景?嵌套在下面的元素很容易修改。我只是无法到达 UI 的最高父级。在这一点上,我假设这是不可能的?