Provider services and secretary providers boxes use the .well class.

This commit is contained in:
alext 2018-01-02 13:14:13 +01:00
parent 729977c1f5
commit ab00577ac2
3 changed files with 6 additions and 8 deletions

View File

@ -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>

View File

@ -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;
}

View File

@ -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">' +