mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Provider services and secretary providers boxes use the .well class.
This commit is contained in:
parent
729977c1f5
commit
ab00577ac2
3 changed files with 6 additions and 8 deletions
|
@ -196,7 +196,7 @@
|
|||
<br><br>
|
||||
|
||||
<h4><?= lang('services') ?></h4>
|
||||
<div id="provider-services"></div>
|
||||
<div id="provider-services" class="well"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -484,7 +484,7 @@
|
|||
<br><br>
|
||||
|
||||
<h4><?= lang('providers') ?></h4>
|
||||
<div id="secretary-providers"></div>
|
||||
<div id="secretary-providers" class="well"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -591,12 +591,10 @@ body .form-horizontal .controls {
|
|||
|
||||
#users-page #secretary-providers,
|
||||
#users-page #provider-services {
|
||||
border: 4px solid #ccc;
|
||||
max-width: 315px;
|
||||
width: 100%;
|
||||
height: 387px;
|
||||
overflow-y: scroll;
|
||||
padding: 7px;
|
||||
overflow-y: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ window.BackendUsers = window.BackendUsers || {};
|
|||
helper.bindEventHandlers();
|
||||
|
||||
// Fill the services and providers list boxes.
|
||||
var html = '<div class="col-xs-12">';
|
||||
var html = '<div>';
|
||||
$.each(GlobalVariables.services, function(index, service) {
|
||||
html +=
|
||||
'<div class="checkbox">' +
|
||||
|
@ -76,7 +76,7 @@ window.BackendUsers = window.BackendUsers || {};
|
|||
html += '</div>';
|
||||
$('#provider-services').html(html);
|
||||
|
||||
html = '<div class="col-xs-12">';
|
||||
html = '<div>';
|
||||
$.each(GlobalVariables.providers, function(index, provider) {
|
||||
html +=
|
||||
'<div class="checkbox">' +
|
||||
|
@ -137,7 +137,7 @@ window.BackendUsers = window.BackendUsers || {};
|
|||
|
||||
GlobalVariables.providers = response;
|
||||
|
||||
var html = '<div class="col-xs-12">';
|
||||
var html = '<div>';
|
||||
$.each(GlobalVariables.providers, function(index, provider) {
|
||||
html +=
|
||||
'<div class="checkbox">' +
|
||||
|
|
Loading…
Reference in a new issue