Changing ngToast success color

This commit is contained in:
Jared Tabor 2016-04-08 15:26:26 -07:00
parent de56747d1c
commit 462eb19087
2 changed files with 13 additions and 1 deletions

View File

@ -155,7 +155,8 @@ export default
Rest.post({})
.then(function () {
ngToast.success({
content: `Test Notification Success: <b>${name}</b> `
content: `<i class="fa fa-check-circle Toast-successIcon"></i> Test Notification Success: <b>${name}</b> `,
className: 'Toast-success'
});
})

View File

@ -5,3 +5,14 @@
.NotifierList-lastColumn{
text-align: left!important;
}
.alert-success{
background-color: #3cb878;
color: #fff;
}
.Toast-successIcon{
font-size: x-large;
vertical-align: middle;
padding-right: 10px;
}