mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
fixed backend notification styling
This commit is contained in:
parent
7b98a9e6f7
commit
30fe0c9c1d
2 changed files with 9 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue