forked from mirrors/easyappointments
Added active effect to language selection label.
This commit is contained in:
parent
f6dc7309e0
commit
6de4784ee7
4 changed files with 15 additions and 3 deletions
|
@ -259,6 +259,7 @@ body .jspTrack {
|
|||
|
||||
#calendar .fc-header .fc-button {
|
||||
margin-bottom: 8px;
|
||||
background-image: none !important;
|
||||
}
|
||||
|
||||
#calendar .fc-agenda-allday .fc-day-content {
|
||||
|
@ -270,7 +271,7 @@ body .jspTrack {
|
|||
}
|
||||
|
||||
#calendar table thead .fc-first {
|
||||
background: #DFDFDF;
|
||||
background: #F5F5F5;
|
||||
}
|
||||
|
||||
#calendar table thead .fc-first th {
|
||||
|
@ -279,6 +280,11 @@ body .jspTrack {
|
|||
color: #555;
|
||||
}
|
||||
|
||||
#calendar .fc-event {
|
||||
border: 1px solid #4790CA;
|
||||
background-color: #4790CA;
|
||||
}
|
||||
|
||||
#existing-customers-list {
|
||||
height: 110px;
|
||||
overflow-y: auto;
|
||||
|
|
|
@ -138,6 +138,10 @@ li.language:hover {
|
|||
padding: 4px 5px;
|
||||
}
|
||||
|
||||
#select-language.active {
|
||||
box-shadow: 0 0 20px #1A865F;
|
||||
}
|
||||
|
||||
#language-list {
|
||||
list-style: none;
|
||||
padding-left: 0px;
|
||||
|
|
|
@ -1547,7 +1547,7 @@ var BackendCalendar = {
|
|||
'<center>' +
|
||||
'<button class="edit-popover btn btn-primary ' + displayEdit + '">' + EALang['edit'] + '</button>' +
|
||||
'<button class="delete-popover btn btn-danger ' + displayDelete + '">' + EALang['delete'] + '</button>' +
|
||||
'<button class="close-popover btn" data-po=' + jsEvent.target + '>' + EALang['close'] + '</button>' +
|
||||
'<button class="close-popover btn btn-default" data-po=' + jsEvent.target + '>' + EALang['close'] + '</button>' +
|
||||
'</center>';
|
||||
} else {
|
||||
displayEdit = (GlobalVariables.user.privileges.appointments.edit == true)
|
||||
|
@ -1580,7 +1580,7 @@ var BackendCalendar = {
|
|||
'<center>' +
|
||||
'<button class="edit-popover btn btn-primary ' + displayEdit + '">' + EALang['edit'] + '</button>' +
|
||||
'<button class="delete-popover btn btn-danger ' + displayDelete + '">' + EALang['delete'] + '</button>' +
|
||||
'<button class="close-popover btn" data-po=' + jsEvent.target + '>' + EALang['close'] + '</button>' +
|
||||
'<button class="close-popover btn btn-default" data-po=' + jsEvent.target + '>' + EALang['close'] + '</button>' +
|
||||
'</center>';
|
||||
}
|
||||
|
||||
|
|
|
@ -312,6 +312,8 @@ var GeneralFunctions = {
|
|||
} else {
|
||||
$(this).popover('hide');
|
||||
}
|
||||
|
||||
$(this).toggleClass('active');
|
||||
});
|
||||
|
||||
$(document).on('click', 'li.language', function() {
|
||||
|
|
Loading…
Reference in a new issue