final changed #3688
This commit is contained in:
parent
44a68c8dbb
commit
3a365a1869
|
|
@ -815,7 +815,7 @@ section.slider-block {
|
|||
img {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
input {
|
||||
display: none;
|
||||
}
|
||||
|
|
@ -3648,6 +3648,8 @@ section.review {
|
|||
height: 130px;
|
||||
float: right;
|
||||
border-collapse: collapse;
|
||||
left: 3px;
|
||||
position: relative;
|
||||
|
||||
tr {
|
||||
|
||||
|
|
@ -4279,14 +4281,6 @@ section.review {
|
|||
}
|
||||
}
|
||||
|
||||
.checkbox {
|
||||
margin: 10px 0px 5px 5px;
|
||||
}
|
||||
|
||||
span.checkmark.payment {
|
||||
left: 163px;
|
||||
}
|
||||
|
||||
.radio {
|
||||
margin: 10px 0px 5px 5px;
|
||||
|
||||
|
|
@ -4301,6 +4295,17 @@ 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;
|
||||
|
|
@ -4570,4 +4575,52 @@ section.review {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//compare page
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.comparison-component {
|
||||
width: 100%;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.comparison-component > h1 {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 15px;
|
||||
min-width: 25px;
|
||||
max-width: 250px;
|
||||
line-height: 30px;
|
||||
vertical-align: top;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.icon.remove-product {
|
||||
top: 5px;
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.action > div {
|
||||
display: inline-block;
|
||||
}
|
||||
.cart-wish-wrap .btn.btn-lg {
|
||||
padding: 5px 10px;
|
||||
}
|
||||
.cart-wish-wrap {
|
||||
display: flex;
|
||||
}
|
||||
.white-cross-sm-icon {
|
||||
width: 24px;
|
||||
height:24px;
|
||||
}
|
||||
.add-to-wishlist {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
|
@ -14,15 +14,14 @@
|
|||
|
||||
<div class="checkout-method-group mb-20">
|
||||
<div class="line-one">
|
||||
<label class="radio-container" style="width:120%">
|
||||
<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 payment"></span>
|
||||
|
||||
<span class="payment-method method-label">
|
||||
<b>{{ $payment['method_title'] }}</b>
|
||||
</span>
|
||||
<span class="checkmark"></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