Merge branch 'master' of https://github.com/brkcvn/akaunting into responsive-control
This commit is contained in:
@ -44,22 +44,24 @@
|
||||
@endif
|
||||
@endforeach
|
||||
|
||||
@if (! empty($suggestion))
|
||||
<li class="border-b p-2 hover:bg-gray-100">
|
||||
<x-link href="{{ url($suggestion->action_url) . '?' . http_build_query((array) $suggestion->action_parameters) }}" class="flex items-center justify-between text-xs" override="class">
|
||||
<div class="truncate">
|
||||
<h2>
|
||||
{{ $suggestion->name }}
|
||||
</h2>
|
||||
@if (! empty($suggestions))
|
||||
@foreach ($suggestions as $suggestion)
|
||||
<li class="border-b p-2 hover:bg-gray-100">
|
||||
<x-link href="{{ url($suggestion->action_url) . '?' . http_build_query((array) $suggestion->action_parameters) }}" class="flex items-center justify-between text-xs" override="class">
|
||||
<div class="truncate">
|
||||
<h2>
|
||||
{{ $suggestion->name }}
|
||||
</h2>
|
||||
|
||||
<div class="h-4 overflow-hidden text-black-400 truncate">
|
||||
{{ $suggestion->description ?? '' }}
|
||||
<div class="h-4 overflow-hidden text-black-400 truncate">
|
||||
{{ $suggestion->description ?? '' }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<span class="material-icons text-gray-500">chevron_right</span>
|
||||
</x-link>
|
||||
</li>
|
||||
<span class="material-icons text-gray-500">chevron_right</span>
|
||||
</x-link>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -1,11 +1,11 @@
|
||||
<div>
|
||||
<div class="d-none">
|
||||
<div class="hidden">
|
||||
@if (!empty($setting['name']))
|
||||
<h2>{{ $setting['name'] }}</h2>
|
||||
@endif
|
||||
|
||||
@if (!empty($setting['description']))
|
||||
<div class="well well-sm">{{ $setting['description'] }}</div>
|
||||
<div>{{ $setting['description'] }}</div>
|
||||
@endif
|
||||
</div>
|
||||
<br>
|
||||
@ -13,8 +13,10 @@
|
||||
<div class="buttons">
|
||||
<div class="pull-right">
|
||||
<x-form id="redirect-form" :url="$confirm_url">
|
||||
<button @click="onRedirectConfirm" type="button" id="button-confirm" class="btn disabled:bg-green-100">
|
||||
{{ trans('general.confirm') }}
|
||||
<button @click="onRedirectConfirm" type="button" id="button-confirm" class="relative flex items-center justify-center bg-green hover:bg-green-700 text-white px-6 py-1.5 text-base rounded-lg disabled:bg-green-100">
|
||||
<span>
|
||||
{{ trans('general.confirm') }}
|
||||
</span>
|
||||
</button>
|
||||
</x-form>
|
||||
</div>
|
||||
|
@ -3,7 +3,7 @@
|
||||
$more_actions = [];
|
||||
@endphp
|
||||
|
||||
<div class="absolute ltr:right-12 rtl:left-12 -top-4 hidden items-center group-hover/actions:flex">
|
||||
<div class="absolute ltr:right-12 rtl:left-12 -top-4 hidden items-center group-hover:flex">
|
||||
@foreach ($actions as $action)
|
||||
@if (! empty($action['permission']))
|
||||
@can($action['permission'])
|
||||
|
@ -10,9 +10,9 @@
|
||||
{{ $item->title }}
|
||||
</h2>
|
||||
|
||||
<p class="text-sm mb-2">
|
||||
<div class="text-sm mb-2">
|
||||
{!! $item->description !!}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<x-link href="{{ $item->action }}" class="font-light text-sm" override="class" target="_blank">
|
||||
<x-link.hover>
|
||||
|
@ -10,9 +10,9 @@
|
||||
{{ $item->title }}
|
||||
</h2>
|
||||
|
||||
<p class="text-sm mb-2">
|
||||
<div class="text-sm mb-2">
|
||||
{!! $item->description !!}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<x-link href="{{ $item->action }}" class="font-light text-sm" override="class" target="_blank">
|
||||
<x-link.hover>
|
||||
|
Reference in New Issue
Block a user