-field($modelOrder,'name'); ?>
-field($modelOrder,'phone'); ?>
-field($modelOrder,'phone2'); ?>
-field($modelOrder,'city'); ?>
-field($modelOrder,'adress'); ?>
-field($modelOrder,'email'); ?>
+
+ field($modelOrder, 'name', [ 'options' => [ 'class' => 'input-blocks' ] ])->textInput([ 'class' => 'custom-input-2' ]); ?>
+
+
+ field($modelOrder, 'phone', [ 'options' => [ 'class' => 'input-blocks' ] ])->textInput([ 'class' => 'custom-input-2' ]); ?>
+
+
+ field($modelOrder, 'phone2', [ 'options' => [ 'class' => 'input-blocks' ] ])->textInput([ 'class' => 'custom-input-2' ]); ?>
+
+
+ field($modelOrder, 'city', [ 'options' => [ 'class' => 'input-blocks' ] ])->textInput([ 'class' => 'custom-input-2' ]); ?>
+
+
+ field($modelOrder, 'adress', [ 'options' => [ 'class' => 'input-blocks' ] ])->textInput([ 'class' => 'custom-input-2' ]); ?>
+
+
+ field($modelOrder, 'email', [ 'options' => [ 'class' => 'input-blocks' ] ])->textInput([ 'class' => 'custom-input-2' ]); ?>
+
+
+
+
+
+
+
= $form->field($modelOrder, 'delivery')
- ->radioList(ArrayHelper::map(Delivery::find()->where(['parent_id'=>0])->asArray()->all(), 'id', 'title'))
+ ->radioList(ArrayHelper::map(Delivery::find()->where(['parent_id'=>0])->asArray()->all(), 'id', 'title'),[
+ 'item' => function($index, $label, $name, $checked, $value) {
+ $return = '
';
+ $return .= '';
+ $return .= '';
+ $return .= '
';
+ return $return;
+ },
+ ])
?>
diff --git a/frontend/web/css/style.css b/frontend/web/css/style.css
index cd21d6c..4f7e8f1 100755
--- a/frontend/web/css/style.css
+++ b/frontend/web/css/style.css
@@ -1302,4 +1302,8 @@ ul.product-special li.promo:after {
.info.product-thumb-video iframe {
width: 100% !important;
height: 100% !important;
+}
+.input-blocks-wrapper {
+ width: 100%;
+ float: left;
}
\ No newline at end of file
--
libgit2 0.21.4