gpt4 book ai didi

google-apps-script - 如何为decoratedPopupPanel 添加样式?

转载 作者:行者123 更新时间:2023-12-03 22:47:33 26 4
gpt4 key购买 nike

我有这个创建装饰弹出面板的代码:

  ...
var x = 600;
var y = 150+row*23;
var popPanel = app.createDecoratedPopupPanel().setStyleAttributes({background:'#FFFFDD',padding:'15px'});
var message = app.createHTML("Opération non reversible !!<BR>Il faudra 'rafraichir' votre navigateur<BR>"+
"après vous être effacé du planning (case ✖)<BR>pour voir les données à jour").setPixelSize(300,60).setStyleAttributes({background:'#FFFFDD',padding:'15px'});
popPanel.add(message);
popPanel.setAnimationEnabled(true);
popPanel.setPopupPosition(x, y);
popPanel.setAutoHideEnabled(true);
popPanel.show();// I didn't chain the commands to make it easier to test by commenting one or another...
return app;
}
它给出了这个结果:
enter image description here
我的问题是:知道 background 属性决定了周围区域(弹出面板填充 15px)并且内部小部件也有它的背景颜色(以及它自己的填充), 我怎样才能改变这个蓝框的颜色?

最佳答案

看来装饰**不能在GAS中重新装饰。我也想知道这一点(在使用装饰标签面板时)。我断定这是不可能的。我使用了 Chrome 检查器,发现蓝色部分实际上是一组图像。所以它不会是一个简单的 CSS 修复。

This thread似乎有了最终的裁决。

关于google-apps-script - 如何为decoratedPopupPanel 添加样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15096657/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com