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>
|
<br><br>
|
||||||
|
|
||||||
<h4><?= lang('services') ?></h4>
|
<h4><?= lang('services') ?></h4>
|
||||||
<div id="provider-services"></div>
|
<div id="provider-services" class="well"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -484,7 +484,7 @@
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
<h4><?= lang('providers') ?></h4>
|
<h4><?= lang('providers') ?></h4>
|
||||||
<div id="secretary-providers"></div>
|
<div id="secretary-providers" class="well"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -591,12 +591,10 @@ body .form-horizontal .controls {
|
||||||
|
|
||||||
#users-page #secretary-providers,
|
#users-page #secretary-providers,
|
||||||
#users-page #provider-services {
|
#users-page #provider-services {
|
||||||
border: 4px solid #ccc;
|
|
||||||
max-width: 315px;
|
max-width: 315px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 387px;
|
height: 387px;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
padding: 7px;
|
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ window.BackendUsers = window.BackendUsers || {};
|
||||||
helper.bindEventHandlers();
|
helper.bindEventHandlers();
|
||||||
|
|
||||||
// Fill the services and providers list boxes.
|
// Fill the services and providers list boxes.
|
||||||
var html = '<div class="col-xs-12">';
|
var html = '<div>';
|
||||||
$.each(GlobalVariables.services, function(index, service) {
|
$.each(GlobalVariables.services, function(index, service) {
|
||||||
html +=
|
html +=
|
||||||
'<div class="checkbox">' +
|
'<div class="checkbox">' +
|
||||||
|
@ -76,7 +76,7 @@ window.BackendUsers = window.BackendUsers || {};
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
$('#provider-services').html(html);
|
$('#provider-services').html(html);
|
||||||
|
|
||||||
html = '<div class="col-xs-12">';
|
html = '<div>';
|
||||||
$.each(GlobalVariables.providers, function(index, provider) {
|
$.each(GlobalVariables.providers, function(index, provider) {
|
||||||
html +=
|
html +=
|
||||||
'<div class="checkbox">' +
|
'<div class="checkbox">' +
|
||||||
|
@ -137,7 +137,7 @@ window.BackendUsers = window.BackendUsers || {};
|
||||||
|
|
||||||
GlobalVariables.providers = response;
|
GlobalVariables.providers = response;
|
||||||
|
|
||||||
var html = '<div class="col-xs-12">';
|
var html = '<div>';
|
||||||
$.each(GlobalVariables.providers, function(index, provider) {
|
$.each(GlobalVariables.providers, function(index, provider) {
|
||||||
html +=
|
html +=
|
||||||
'<div class="checkbox">' +
|
'<div class="checkbox">' +
|
||||||
|
|
Loading…
Reference in a new issue