Dijit ConfirmDialog-更改其默认样式



如何更改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();

顺便说一句,style中的color属性只是内容颜色。要更改标题栏背景颜色,此链接显示:

您必须覆盖.dijtDialogTitleBar 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>

这里,颜色变为绿色。

相关内容

  • 没有找到相关文章

最新更新