Fixed Some Layouts
This commit is contained in:
parent
7863fcfbfb
commit
926c17554b
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"/js/velocity.js": "/js/velocity.js?id=15074e15394c08f962f7",
|
||||
"/js/velocity.js": "/js/velocity.js?id=d5391a65146f1d0f4ca1",
|
||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=4322502d80a0e4a0affd",
|
||||
"/css/velocity.css": "/css/velocity.css?id=af0cba4dba48b3e35c05"
|
||||
"/css/velocity.css": "/css/velocity.css?id=69e21a90a84bca6263e5"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
type="number"
|
||||
:value="showFilled"
|
||||
name="rating"
|
||||
class="hidden" />
|
||||
class="d-none" />
|
||||
|
||||
<i
|
||||
:class="`material-icons ${editable ? 'cursor-pointer' : ''}`"
|
||||
|
|
|
|||
|
|
@ -597,7 +597,7 @@
|
|||
padding: 10px 0 !important;
|
||||
|
||||
.product-name {
|
||||
width: 17rem;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
|
|
|
|||
|
|
@ -143,18 +143,20 @@
|
|||
@endif
|
||||
@endauth
|
||||
|
||||
<a
|
||||
class="unset
|
||||
@auth('customer')
|
||||
ml10
|
||||
@endauth
|
||||
"
|
||||
href="{{ route('shop.checkout.cart.remove', ['id' => $item->id]) }}"
|
||||
@click="removeLink('{{ __('shop::app.checkout.cart.cart-remove-action') }}')">
|
||||
<div class="d-inline-block">
|
||||
<a
|
||||
class="unset
|
||||
@auth('customer')
|
||||
ml10
|
||||
@endauth
|
||||
"
|
||||
href="{{ route('shop.checkout.cart.remove', ['id' => $item->id]) }}"
|
||||
@click="removeLink('{{ __('shop::app.checkout.cart.cart-remove-action') }}')">
|
||||
|
||||
<span class="rango-delete fs24"></span>
|
||||
<span class="align-vertical-top">{{ __('shop::app.checkout.cart.remove') }}</span>
|
||||
</a>
|
||||
<span class="rango-delete fs24"></span>
|
||||
<span class="align-vertical-super">{{ __('shop::app.checkout.cart.remove') }}</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@
|
|||
|
||||
<star-ratings ratings="{{ $review->rating }}"></star-ratings>
|
||||
|
||||
<h2 class="fw6">{{ $review->title }}</h2>
|
||||
<h5 class="fw6">{{ $review->title }}</h5>
|
||||
|
||||
<p>{{ $review->comment }}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -100,9 +100,9 @@
|
|||
<span class="col-12">{{ __('shop::app.search.no-results') }}</span>
|
||||
@else
|
||||
@if ($results->total() == 1)
|
||||
<h2 class="fw6 col-12 mb20">
|
||||
<h5 class="fw6 col-12 mb20">
|
||||
{{ $results->total() }} {{ __('shop::app.search.found-result') }}
|
||||
</h2>
|
||||
</h5>
|
||||
@else
|
||||
<h2 class="fw6 col-12 mb20">
|
||||
{{ $results->total() }} {{ __('shop::app.search.found-results') }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue