我的应用程序中显示了 toastr 成功和错误消息。我更改了背景颜色和字体颜色。我想更改消息中显示的图标颜色。我已经到处搜索了这个,但我找不到改变图标填充颜色或至少改变图标的方法。下面是成功消息的截图
以下是错误消息,
我想更改这些消息中显示的图标,以更改图标的填充颜色。js文件中的代码,
.success(function(data) {
toastr.success('Successfully Build ', 'Congratulations!', {
closeButton: true
});
}).error(function(err) {
toastr.error('Cant Build', 'Error', {
closeButton: true
});
在 CSS 中,
#toast-container > .toast-success {
background-image: none;
background-color: #e9e9e9;
color: black;
}
#toast-container > .toast-error {
background-image: none;
background-color: #e9e9e9;
color: red;
}