我在应用程序中显示了成功和错误消息。我改变了背景颜色和字体颜色。我想更改消息中显示的图标颜色。我到处都搜索过这个,但我找不到改变图标填充颜色或至少改变图标的方法。以下是成功消息的屏幕截图
以下是错误消息
我想更改这些消息中显示的图标,更改图标的填充颜色。 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;
}
答案 0 :(得分:4)
尝试使用此示例代码来获得深红色的心
style.css
#toast-container > .toast-success:before {
content: "\f004";
color: crimson;
}
答案 1 :(得分:3)
烤面包机使用背景PNG图像(24x24像素)作为图标,因此您最好的选择就是用您事先准备好的彩色版本替换它们。
假设您准备了相同大小的“黑色复选标记”PNG,那么CSS将是:
#toast-container>.toast-success {
background-image: url(<insert here the url pointing to your new PNG>)!important;
}
现在,要以您想要的颜色创建图标,请检查flaticon.com(或其他类似网站)。您应该能够找到免版税的图标,并下载您想要的大小和颜色。
答案 2 :(得分:1)
CSS
#toast-container > .toast {
background-image: none !important;
}
#toast-container > .toast:before {
position: relative;
font-size: 24px;
line-height: 18px;
float: left;
margin-left: -1em;
color: #FFF;
padding-right: 0.5em;
margin-right: 0.5em;
}
#toast-container .toast{
background-color: #1b75bc !important;
}
#toast-container> .fa-check , .toast {
background-color: #328b17 !important;
}
#toast-container> .fa-trash , .toast {
background-color: #590619 !important;
}
.toast-message{
font-family: Calibri;
}
JS
toastr.options = {
"closeButton": false,
"debug": false,
"newestOnTop": false,
"progressBar": true,
"positionClass": "toast-top-right",
"preventDuplicates": false,
"onclick": null,
"showDuration": "3000",
"hideDuration": "1000",
"timeOut": "5000",
"extendedTimeOut": "300",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut",
iconClasses: {
error: 'fas fa-trash',
info: 'fa fa-info',
success: 'fas fa-check',
warning: 'something',
},
};
答案 3 :(得分:0)
我知道这是一个老问题,但是我找到了一个更好的解决方案(无需重写现有的烤面包机模板图标)。 如果您不想更改“ toastr-success”的当前图标,但想创建带有不同图标的新“模板”,则可以在JS中使用此传递特定图标类的方法:
tsconfig.json
然后将CSS设置为“ toast-custom”:
toastr.info("Click To Open", "more text",{iconClass:"toast-custom"});
我希望这会有所帮助!