我想控制dojo按钮的按钮格式,以便只有图标(图像)保持可见 - 没有道场造型
以下是我正在做的事:创建按钮
var w = new Button({
type:"button",
iconClass: "infoIcon",
showLabel:"false",
onClick: function () {
openInfoPane(ProcessRowdata(grid, Data));
}
});
此按钮位于dojo Grid
中这是CSS
.infoIcon {
background-image: url('images/help.ico');
width: 24px;
height: 24px;
background-color: transparent;
background-repeat:no-repeat;
padding:0px;
margin-left:4px;
}
现在看起来像这样 - [IMG] http://i59.tinypic.com/2h540w3.png[/IMG] 我想摆脱背景(蓝色发光的东西)
有点像 - [IMG] http://i58.tinypic.com/2ijm6is.png[/IMG] 怎么做到这一点?
似乎"背景颜色:透明;"没有任何影响?
答案 0 :(得分:0)
#navToolbar .tundra .dijitToolbar {
background-color: transparent;
}