Merge pull request #3868 from devansh-webkul/compare_icon_issue_in_default
Fixed #3866
This commit is contained in:
commit
0096491a4d
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=dbbe4951362b3f0ea3e2"
|
||||
"/css/shop.css": "/css/shop.css?id=1c8e0e117353ce034173"
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 185 B |
|
|
@ -271,7 +271,6 @@ input {
|
|||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 125px;
|
||||
|
||||
.media-info {
|
||||
display: flex;
|
||||
|
|
@ -284,6 +283,7 @@ input {
|
|||
|
||||
.info {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-evenly;
|
||||
|
|
@ -296,7 +296,6 @@ input {
|
|||
}
|
||||
|
||||
.operations {
|
||||
height: 120px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
|
|
@ -2438,6 +2437,7 @@ section.cart {
|
|||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
|
||||
.item-title {
|
||||
font-size: 18px;
|
||||
|
|
@ -4337,7 +4337,7 @@ section.review {
|
|||
padding-left: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//checkout process page end here
|
||||
|
||||
//customer page start here
|
||||
|
|
@ -4636,7 +4636,6 @@ td {
|
|||
max-width: 250px;
|
||||
line-height: 30px;
|
||||
vertical-align: top;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.icon.remove-product {
|
||||
|
|
|
|||
|
|
@ -97,6 +97,12 @@
|
|||
height: 24px;
|
||||
}
|
||||
|
||||
.compare-icon {
|
||||
background-image: url("../images/compare_arrows.png");
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
.wishlist-icon {
|
||||
background-image: url('../images/wishlist.svg');
|
||||
width: 32px;
|
||||
|
|
|
|||
|
|
@ -70,8 +70,12 @@
|
|||
@endguest
|
||||
style="color: #242424;"
|
||||
>
|
||||
<span class="name">{{ __('shop::app.customer.compare.text') }}</span>
|
||||
(<span id="compare-items-count"></span>)
|
||||
|
||||
<i class="icon compare-icon"></i>
|
||||
<span class="name">
|
||||
{{ __('shop::app.customer.compare.text') }}
|
||||
<span class="count">(<span id="compare-items-count"></span>)<span class="count">
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue