Commit 28d1e978ff7db9e5cbe9451e309f8a0409db83b6
1 parent
88fcbfaf
Обратная связь 1
Showing
3 changed files
with
19 additions
and
3 deletions
Show diff stats
common/messages/ru/app.php
| @@ -4,4 +4,5 @@ | @@ -4,4 +4,5 @@ | ||
| 4 | 'Login' => 'Войти', | 4 | 'Login' => 'Войти', |
| 5 | 'Not registered yet?' => 'Не зарегистрированы?', | 5 | 'Not registered yet?' => 'Не зарегистрированы?', |
| 6 | 'Register now!' => 'Зарегистрироваться', | 6 | 'Register now!' => 'Зарегистрироваться', |
| 7 | + 'Отправить' => ' Отправить', | ||
| 7 | ]; | 8 | ]; |
| 8 | \ No newline at end of file | 9 | \ No newline at end of file |
frontend/views/layouts/main.php
| @@ -468,7 +468,7 @@ _________________________________________________________ --> | @@ -468,7 +468,7 @@ _________________________________________________________ --> | ||
| 468 | <div class="modal-content"> | 468 | <div class="modal-content"> |
| 469 | <div class="modal-header"> | 469 | <div class="modal-header"> |
| 470 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | 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 | </div> | 472 | </div> |
| 473 | <div class="modal-body"> | 473 | <div class="modal-body"> |
| 474 | <?php | 474 | <?php |
| @@ -484,14 +484,14 @@ _________________________________________________________ --> | @@ -484,14 +484,14 @@ _________________________________________________________ --> | ||
| 484 | ->label(false) | 484 | ->label(false) |
| 485 | ->textInput( | 485 | ->textInput( |
| 486 | [ | 486 | [ |
| 487 | - 'placeholder' => $callback->getAttributeLabel('name'), | 487 | + 'placeholder' => $callback->getAttributeLabel('ваше имя'), |
| 488 | ] | 488 | ] |
| 489 | ); | 489 | ); |
| 490 | echo $form->field($callback, 'phone') | 490 | echo $form->field($callback, 'phone') |
| 491 | ->label(false) | 491 | ->label(false) |
| 492 | ->textInput( | 492 | ->textInput( |
| 493 | [ | 493 | [ |
| 494 | - 'placeholder' => $callback->getAttributeLabel('phone'), | 494 | + 'placeholder' => $callback->getAttributeLabel('номер телефона'), |
| 495 | ] | 495 | ] |
| 496 | ); | 496 | ); |
| 497 | echo Html::tag( | 497 | echo Html::tag( |
frontend/web/css/style.css
| @@ -4688,4 +4688,19 @@ a.list-group-item.active > .badge, | @@ -4688,4 +4688,19 @@ a.list-group-item.active > .badge, | ||
| 4688 | #login-modal .modal-sm { | 4688 | #login-modal .modal-sm { |
| 4689 | width: 350px; | 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 | \ No newline at end of file | 4707 | \ No newline at end of file |