diff --git a/frontend/views/basket/index.php b/frontend/views/basket/index.php index 4afcba3..1c9691d 100755 --- a/frontend/views/basket/index.php +++ b/frontend/views/basket/index.php @@ -46,7 +46,7 @@ $('#orders-delivery input[type=\"radio\"]').click(function(){
контакты
-
+
field($modelOrder, 'name', [ 'options' => [ 'class' => 'input-blocks basket_input_2' ] ])->textInput([ 'class' => 'custom-input-2' ]); ?>
@@ -104,14 +104,26 @@ $('#orders-delivery input[type=\"radio\"]').click(function(){
- field($modelOrder, 'payment')->radioList(['Оплатить наличными'=>'Оплатить наличными','Оплатить на карту Приват Банка'=>'Оплатить на карту Приват Банка','Оплатить по безналичному расчету'=>'Оплатить по безналичному расчету','Оплатить Правекс-телеграф'=>'Оплатить Правекс-телеграф','Наложенным платежом'=>'Наложенным платежом']); ?> + field($modelOrder, 'payment')->radioList(['Оплатить наличными'=>'Оплатить наличными','Оплатить на карту Приват Банка'=>'Оплатить на карту Приват Банка','Оплатить по безналичному расчету'=>'Оплатить по безналичному расчету','Оплатить Правекс-телеграф'=>'Оплатить Правекс-телеграф','Наложенным платежом'=>'Наложенным платежом'],[ + 'item' => function($index, $label, $name, $checked, $value) { + $return = '
'; + $return .= ''; + $return .= ''; + $return .= '
'; + return $return; + }, + ]); ?>
+ + +
-field($modelOrder,'body')->textarea(['rows'=>7]); ?> +field($modelOrder,'body')->textarea(['rows'=>7]); ?> + 'submit4')); ?>
diff --git a/frontend/web/css/style.css b/frontend/web/css/style.css index 2fdc018..09e80ee 100755 --- a/frontend/web/css/style.css +++ b/frontend/web/css/style.css @@ -1346,6 +1346,7 @@ ul.product-special li.promo:after { font-size: 12px; font-weight: bold; text-transform: uppercase; + margin-bottom: 12px; } .input-blocks-group { width: 100%; @@ -1371,6 +1372,7 @@ input.custom-radio + label span{ background: url('../img/radio_new.png') no-repeat; float: left; transition: .2s; + margin-top: 1px; } input.custom-radio:checked + label span, input.custom-radio:checked + label:hover span { background: url('../img/radio_new-active.png') no-repeat; @@ -1378,4 +1380,8 @@ input.custom-radio:checked + label span, input.custom-radio:checked + label:hove input.custom-radio + label:hover { text-decoration: underline; -} \ No newline at end of file +} +.custom-form-buttons { + margin-top: 7px; +} +.custom-form-buttons:first-child {margin-top: 0} \ No newline at end of file -- libgit2 0.21.4