fixed backend notification styling

This commit is contained in:
Alex Tselegidis 2015-07-22 22:24:31 +02:00
parent 7b98a9e6f7
commit 30fe0c9c1d
2 changed files with 9 additions and 1 deletions

View File

@ -99,6 +99,14 @@ root {
#notification .alert { #notification .alert {
margin-bottom: 0px; margin-bottom: 0px;
background-color: #FCF8E3;
color: #9E9980;
}
#notification .close {
color: #9E9980;
font-size: 25px;
line-height: 0.8;
} }
#loading { #loading {

View File

@ -114,7 +114,7 @@ var Backend = {
$.each(actions, function(index, action) { $.each(actions, function(index, action) {
var actionId = action['label'].toLowerCase().replace(' ', '-'); var actionId = action['label'].toLowerCase().replace(' ', '-');
notificationHtml += '<button id="' + actionId + '" class="btn btn-small">' notificationHtml += '<button id="' + actionId + '" class="btn btn-xs">'
+ action['label'] + '</button>'; + action['label'] + '</button>';
$(document).off('click', '#' + actionId); $(document).off('click', '#' + actionId);