0

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

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

4

1 回答 1

1

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

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>

在这里,颜色变为绿色。

于 2016-08-07T21:10:18.010 回答