Commit 28d1e978ff7db9e5cbe9451e309f8a0409db83b6
1 parent
88fcbfaf
Обратная связь 1
Showing
3 changed files
with
19 additions
and
3 deletions
Show diff stats
common/messages/ru/app.php
frontend/views/layouts/main.php
| ... | ... | @@ -468,7 +468,7 @@ _________________________________________________________ --> |
| 468 | 468 | <div class="modal-content"> |
| 469 | 469 | <div class="modal-header"> |
| 470 | 470 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> |
| 471 | - <h4 class="modal-title callback" id="Login">Обратный звонок</h4> | |
| 471 | + <h4 class="modal-title callback text-center" id="Login">Обратный звонок</h4> | |
| 472 | 472 | </div> |
| 473 | 473 | <div class="modal-body"> |
| 474 | 474 | <?php |
| ... | ... | @@ -484,14 +484,14 @@ _________________________________________________________ --> |
| 484 | 484 | ->label(false) |
| 485 | 485 | ->textInput( |
| 486 | 486 | [ |
| 487 | - 'placeholder' => $callback->getAttributeLabel('name'), | |
| 487 | + 'placeholder' => $callback->getAttributeLabel('ваше имя'), | |
| 488 | 488 | ] |
| 489 | 489 | ); |
| 490 | 490 | echo $form->field($callback, 'phone') |
| 491 | 491 | ->label(false) |
| 492 | 492 | ->textInput( |
| 493 | 493 | [ |
| 494 | - 'placeholder' => $callback->getAttributeLabel('phone'), | |
| 494 | + 'placeholder' => $callback->getAttributeLabel('номер телефона'), | |
| 495 | 495 | ] |
| 496 | 496 | ); |
| 497 | 497 | echo Html::tag( | ... | ... |
frontend/web/css/style.css
| ... | ... | @@ -4688,4 +4688,19 @@ a.list-group-item.active > .badge, |
| 4688 | 4688 | #login-modal .modal-sm { |
| 4689 | 4689 | width: 350px; |
| 4690 | 4690 | } |
| 4691 | +} | |
| 4692 | + | |
| 4693 | +h4.modal-title.callback{ | |
| 4694 | + text-transform:uppercase; | |
| 4695 | +} | |
| 4696 | +.form-group.field-feedback-returnurl{ | |
| 4697 | + display: none; | |
| 4698 | +} | |
| 4699 | + | |
| 4700 | +a i.fa, button i.fa, span.fa { | |
| 4701 | + margin: 0 5px; | |
| 4702 | +} | |
| 4703 | + | |
| 4704 | +.modal-dialog.modal-sm { | |
| 4705 | + min-width: 350px; | |
| 4691 | 4706 | } |
| 4692 | 4707 | \ No newline at end of file | ... | ... |