mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Corrections for the new bootstrap version and theme.
This commit is contained in:
parent
d1a664c461
commit
2e85af40d2
4 changed files with 7 additions and 6 deletions
|
@ -235,10 +235,10 @@
|
|||
<strong><?php echo $this->lang->line('select_provider'); ?></strong>
|
||||
</label>
|
||||
|
||||
<select id="select-provider" class="cold-md-4 form-control"></select>
|
||||
<select id="select-provider" class="col-md-4 form-control"></select>
|
||||
</div>
|
||||
|
||||
<div id="service-description" style="display:none;"></div>
|
||||
<div id="service-description" class="well" style="display:none;"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -110,7 +110,7 @@ body {
|
|||
}
|
||||
|
||||
#book-appointment-wizard .book-step strong {
|
||||
font-size: 15px;
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
text-align: center;
|
||||
color: #A9C5BB;
|
||||
|
@ -130,7 +130,7 @@ body {
|
|||
|
||||
#book-appointment-wizard .active-step strong {
|
||||
color: #38A07A;
|
||||
font-size: 22px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
#book-appointment-wizard #frame-footer {
|
||||
|
|
|
@ -27,6 +27,7 @@ body .ui-dialog {
|
|||
|
||||
body .ui-dialog .ui-dialog-buttonpane {
|
||||
padding: .3em 1em .3em .4em;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.breaks tr:hover td {
|
||||
|
|
|
@ -335,7 +335,7 @@ var FrontendBook = {
|
|||
$('#available-hours').html('<div style="width:50px; float:left;"></div>');
|
||||
|
||||
$.each(response, function(index, availableHour) {
|
||||
if ((currColumn * 13) < (index + 1)) {
|
||||
if ((currColumn * 10) < (index + 1)) {
|
||||
currColumn++;
|
||||
$('#available-hours').append('<div style="width:50px; float:left;"></div>');
|
||||
}
|
||||
|
@ -427,7 +427,7 @@ var FrontendBook = {
|
|||
$('#appointment-details').html(
|
||||
'<h4>' + $('#select-service option:selected').text() + '</h4>' +
|
||||
'<p>'
|
||||
+ '<strong class="text-info">'
|
||||
+ '<strong class="text-primary">'
|
||||
+ $('#select-provider option:selected').text() + '<br>'
|
||||
+ selectedDate + ' ' + $('.selected-hour').text()
|
||||
+ servicePrice + ' ' + serviceCurrency
|
||||
|
|
Loading…
Reference in a new issue