Dijit ConfirmDialog - 更改其默认样式

时间:2016-08-05 20:11:18

标签: dojo default confirm-dialog

如何更改dijit ConfirmDialog的默认样式(条形颜色,内容颜色等)?请参阅以下代码。确认对话框的宽度或颜色均未更改。

var confirm = new ConfirmDialog({
    title: "Confirmation",
    content: "This is the content", 
    style: "width: 400px, color: grey"
}).show();

1 个答案:

答案 0 :(得分:1)

我相信您只需要将,更改为分号;

var confirm = new ConfirmDialog({
    title: "Confirmation",
    content: "This is the content", 
    style: "width: 400px; color: grey"
}).show();

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

  

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

此处,颜色变为绿色。