wip
This commit is contained in:
parent
61800bb7e4
commit
083c0f653d
|
|
@ -506,6 +506,7 @@ body.page-design .autocomplete-group-wrapper .item-group-wrapper .item i.right:h
|
|||
height: 26px;
|
||||
line-height: 26px;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
.link-dialog-box .link-dialog-content .product-search .el-input-group__append {
|
||||
background-color: #0072ff;
|
||||
|
|
|
|||
|
|
@ -634,6 +634,7 @@ body.page-design {
|
|||
height: 26px;
|
||||
line-height: 26px;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.link-top-new {
|
||||
|
|
|
|||
|
|
@ -191,7 +191,10 @@
|
|||
url = '{{ admin_route('categories.index') }}';
|
||||
break;
|
||||
case 'brand':
|
||||
url = '';
|
||||
url = '{{ admin_route('brands.index') }}';
|
||||
break;
|
||||
case 'page':
|
||||
url = '{{ admin_route('pages.index') }}';
|
||||
break;
|
||||
default:
|
||||
null;
|
||||
|
|
|
|||
|
|
@ -38,8 +38,9 @@
|
|||
<h6 class="text-uppercase text-dark mb-3">{{ $link['title'][$locale] }}</h6>
|
||||
<ul class="list-unstyled">
|
||||
@foreach ($link['links'] as $item)
|
||||
<li><a href="{{ type_route($item['type'], $item['value']) }}"
|
||||
@if (isset($item['new_window']) && $item['new_window']) target="_blank" @endif>{{ $item['text'][$locale] }}</a></li>
|
||||
<li>
|
||||
<a href="{{ $item['value'] }}" @if (isset($item['new_window']) && $item['new_window']) target="_blank" @endif>{{ $item['text'][$locale] ?? '' }}</a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue