Merge pull request #3711 from akhtarkhan1/select_icon_payment_page
issued fixed #3688
This commit is contained in:
commit
bebcf38f9c
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"/js/shop.js": "/js/shop.js?id=d64fdfe9e3fe3e4b9ee4",
|
||||
"/css/shop.css": "/css/shop.css?id=72d87fe2508fdcd9f397"
|
||||
"/css/shop.css": "/css/shop.css?id=8ef1aa65dda3180b66ee"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4286,10 +4286,6 @@ section.review {
|
|||
}
|
||||
}
|
||||
|
||||
.checkbox {
|
||||
margin: 10px 0px 5px 5px;
|
||||
}
|
||||
|
||||
.radio {
|
||||
margin: 10px 0px 5px 5px;
|
||||
|
||||
|
|
@ -4304,11 +4300,22 @@ section.review {
|
|||
}
|
||||
}
|
||||
|
||||
.radio-container .checkmark {
|
||||
top: 2px;
|
||||
left: 4px;
|
||||
}
|
||||
|
||||
.mt-5 {
|
||||
margin-top: 5px;
|
||||
margin-right: 28px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 770px) {
|
||||
.checkout-process .col-main {
|
||||
padding-left: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
//checkout process page end here
|
||||
|
||||
//customer page start here
|
||||
|
|
|
|||
|
|
@ -16,13 +16,11 @@
|
|||
<div class="line-one">
|
||||
<label class="radio-container">
|
||||
<input v-validate="'required'" type="radio" id="{{ $payment['method'] }}" name="payment[method]" value="{{ $payment['method'] }}" v-model="payment.method" @change="methodSelected()" data-vv-as=""{{ __('shop::app.checkout.onepage.payment-method') }}"">
|
||||
|
||||
<span class="checkmark"></span>
|
||||
|
||||
<span class="payment-method method-label">
|
||||
<b>{{ $payment['method_title'] }}</b>
|
||||
</span>
|
||||
</label>
|
||||
<span class="payment-method method-label">
|
||||
<b>{{ $payment['method_title'] }}</b>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="line-two mt-5">
|
||||
|
|
|
|||
Loading…
Reference in New Issue