Commit 0c1e7d9b7e4b84d9315e2a3247276d7b5c49568b
Merge remote-tracking branch 'origin/master'
Showing
3 changed files
with
9 additions
and
3 deletions
Show diff stats
common/messages/ru/core.php
frontend/views/layouts/main.php
... | ... | @@ -407,7 +407,7 @@ _________________________________________________________ --> |
407 | 407 | 'options' => [ |
408 | 408 | 'class' => 'form-group field-appointment-name', |
409 | 409 | ], |
410 | - 'template' => "<div class=\"on_input_\"></div>{label}\n{input}\n", | |
410 | + 'template' => "<div class=\"on_input_\"></div>{label}\n{input}\n<p class=\"help-block help-block-error\"></p>", | |
411 | 411 | 'inputOptions' => [ |
412 | 412 | 'id' => 'appointment-name' |
413 | 413 | ], |
... | ... | @@ -428,7 +428,7 @@ _________________________________________________________ --> |
428 | 428 | 'options' => [ |
429 | 429 | 'class' => 'form-group field-appointment-phone', |
430 | 430 | ], |
431 | - 'template' => "<div class=\"on_input_\"></div>{label}\n{input}\n", | |
431 | + 'template' => "<div class=\"on_input_\"></div>{label}\n{input}\n<p class=\"help-block help-block-error\"></p>", | |
432 | 432 | 'inputOptions' => [ |
433 | 433 | 'id' => 'appointment-phone' |
434 | 434 | ], |
... | ... | @@ -449,7 +449,7 @@ _________________________________________________________ --> |
449 | 449 | 'options' => [ |
450 | 450 | 'class' => 'form-group field-appointment-date has-datepicker', |
451 | 451 | ], |
452 | - 'template' => "<div class=\"on_input_\"></div>{label}\n{input}\n", | |
452 | + 'template' => "<div class=\"on_input_\"></div>{label}\n{input}\n<p class=\"help-block help-block-error\"></p>", | |
453 | 453 | 'inputOptions' => [ |
454 | 454 | 'id' => 'appointment-date' |
455 | 455 | ], | ... | ... |
frontend/web/css/custom.css
... | ... | @@ -484,6 +484,11 @@ div.modal-title{ |
484 | 484 | max-width: 720px; |
485 | 485 | margin: 0 auto; |
486 | 486 | } |
487 | +.success_.done_{ | |
488 | + opacity: 1!important; | |
489 | + display: block; | |
490 | + z-index: 99999; | |
491 | +} | |
487 | 492 | @media (max-width: 991px) { |
488 | 493 | .footer-copyrights{ |
489 | 494 | margin-top:0; | ... | ... |