如何更改 dijit ConfirmDialog 的默认样式(条形颜色、内容颜色等)?请参阅下面的代码。确认对话框的宽度或颜色均未更改。
var confirm = new ConfirmDialog({
title: "Confirmation",
content: "This is the content",
style: "width: 400px, color: grey"
}).show();
如何更改 dijit ConfirmDialog 的默认样式(条形颜色、内容颜色等)?请参阅下面的代码。确认对话框的宽度或颜色均未更改。
var confirm = new ConfirmDialog({
title: "Confirmation",
content: "This is the content",
style: "width: 400px, color: grey"
}).show();
我相信您只需要将 更改为,
分号;
var confirm = new ConfirmDialog({
title: "Confirmation",
content: "This is the content",
style: "width: 400px; color: grey"
}).show();
顺便说一句,color
属性style
只是内容颜色。要更改标题栏背景颜色,此链接显示:
您必须覆盖 .dijitDialogTitleBar css 上的背景颜色。例如,
<link rel="stylesheet" type="text/css" href="dojo-release-1.6.1-src/dojo/resources/dojo.css" />
<link rel="stylesheet" type="text/css" href="dojo-release-1.6.1-src/dijit/themes/claro/claro.css" />
<style> .claro .dijitDialogTitleBar { background-color: #00FF00 } </style>
在这里,颜色变为绿色。