如果是单个的justep.Util.hint提示要控制样式可以在调用的设置style,如下:
justep.Util.hint("提示信息", {
"tyep" : "info",
"delay" : 100000,
"position" : "bottom",
"style":"background-color:red !important;background-image:none!important;"
});
如果是所有的都控制,修改系统原来的样式可以定义公共CSS文件,在门户首页中引用这个CSS文件。例如在/UI2/portal/pc/index.w中引用,在CSS文件中重写x-hint样式如下:
.x-hint{
background-color:red !important;
background-image:none!important;
}
评一波