ExtJS - 自定义 MessageBox 图标多次出现

ExtJS - Custom MessageBox icon appearing multiple times

我有一个 Extjs 4 应用程序,带有一个消息框和一个自定义图标 class 来显示一个复选框。不管是什么 32x32 *.png 我放在那里图片都会重复。

设置图标格式使其不重复的正确方法是什么?

代码

 Ext.Msg.show({
     title: 'Success',
     msg: 'Control settings changed.',
     icon: 'save-success',
     buttons: Ext.Msg.OK
  });

//CSS
    .save-success{
         background-image: url(../images/icons/accept-1.png);
        width: 32px;
        height: 32px;
     }

save-success中添加不重复:

.save-success{
  background-image: url(../images/icons/accept-1.png);
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}