Issue 35 - Change Notifications to Notices

This commit is contained in:
perryharlock
2013-09-25 14:50:19 +01:00
parent 2ed29319f8
commit b7b4acfa9e
6 changed files with 14 additions and 14 deletions

File diff suppressed because one or more lines are too long

View File

@@ -39,7 +39,7 @@ $(document).ready(function(){
}
};
// Toggle appearance of lists of error/warnings/notifications
// Toggle appearance of lists of error/warnings/notices
expandLink.click( function(){
$(this).parent().next().slideToggle('slow', function(){});
if ($(this).parent().hasClass('showing')) {
@@ -131,7 +131,7 @@ $(document).ready(function(){
return [
{ color: "rgb(231, 76, 60)", label: "Errors", data: data.error },
{ color: "rgb(243, 156, 18)", label: "Warnings", data: data.warning },
{ color: "rgb(52, 152, 219)", label: "Notifications", data: data.notification }
{ color: "rgb(52, 152, 219)", label: "Notices", data: data.notice }
];
}

View File

@@ -117,7 +117,7 @@
background-color:@brand-warning;
color:@btn-default-color;
}
.info, .notification {
.info, .notice {
background-color:@brand-info;
color:@btn-default-color;
}