-
-
2021112209 数据达人Lv4
发表于2022-3-29 14:00
悬赏1
已解决

div.eui-panel.eui-anim.eui-panel-selectlist.eui-anim-upbit {
color: #00FF00 !important;
border: 1px !important;
}
更多脚本可参考 https://bbs.esensoft.com/thread-141434-1-1.html


3个回答
在报表自定义样式里写脚本可以实现,脚本如下
div.eui-panel.eui-anim.eui-panel-selectlist.eui-anim-upbit {
color: #00FF00 !important;
border: 1px !important;
}
更多脚本可参考 https://bbs.esensoft.com/thread-141434-1-1.html
维下拉框参数组件的边框颜色可使用脚本
EUI.addStyleSheet(".eui-form-select .eui-form-select-icon {border: 1px solid #00FF00 !important;}"); /* 右框线边框颜色 */
EUI.addStyleSheet(".eui-form-select > input:first-child{color:#ffffff;border: 1px solid #00FF00;}")/* 左框线边框颜色 */
更多下拉框脚本可参考https://bbs.esensoft.com/thread-141712-1-1.html