Removed unnecessary comment from table view file and commented out the fixed header styling (not ready yet).

This commit is contained in:
Alex Tselegidis 2016-07-25 01:19:17 +02:00
parent 5b2fcdbee6
commit cef87016dc
2 changed files with 18 additions and 3 deletions

View File

@ -273,7 +273,7 @@ body legend {
border-bottom: 1px solid #D6D6D6; border-bottom: 1px solid #D6D6D6;
border-radius: 3px; border-radius: 3px;
background: #3A3A3A; background: #3A3A3A;
padding: 10px; padding: 5px;
margin-bottom: 15px; margin-bottom: 15px;
overflow: auto; overflow: auto;
color: white; color: white;
@ -417,7 +417,7 @@ body .form-horizontal .controls {
} }
#calendar .calendar-header { #calendar .calendar-header {
padding: 10px 0; padding-bottom: 15px;
} }
#calendar .calendar-header input { #calendar .calendar-header input {
@ -461,6 +461,21 @@ body .form-horizontal .controls {
margin-right: 10px; margin-right: 10px;
} }
// #calendar .calendar-view .date-column .provider-column table {
// width: 350px;
// }
// #calendar .calendar-view .date-column .provider-column table thead {
// display: block;
// background: #fff;
// }
// #calendar .calendar-view .date-column .provider-column table tbody {
// display: block;
// overflow: auto;
// min-height: 500px;
// }
#calendar .calendar-view .date-column .provider-column .event { #calendar .calendar-view .date-column .provider-column .event {
font-size: 10px; font-size: 10px;
border-radius: 3px; border-radius: 3px;

View File

@ -803,7 +803,7 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
// Auto-reload the results every one minute. // Auto-reload the results every one minute.
var interval = setInterval(function() { var interval = setInterval(function() {
// $('#reload-appointments').trigger('click'); $('#reload-appointments').trigger('click');
}, 15000); }, 15000);
}; };