fixed invisible buttons issue across the website
This commit is contained in:
@@ -55,7 +55,7 @@ new class extends Component {
|
||||
|
||||
<div>
|
||||
<div class="mb-6">
|
||||
<flux:button variant="ghost" :href="route('admin.potential-clients.index')" wire:navigate icon="arrow-left">
|
||||
<flux:button variant="outline" :href="route('admin.potential-clients.index')" wire:navigate icon="arrow-left">
|
||||
{{ __('potential-clients.back_to_list') }}
|
||||
</flux:button>
|
||||
</div>
|
||||
@@ -160,7 +160,7 @@ new class extends Component {
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-end gap-4 border-t border-zinc-200 pt-6">
|
||||
<flux:button variant="ghost" :href="route('admin.potential-clients.index')" wire:navigate>
|
||||
<flux:button variant="outline" :href="route('admin.potential-clients.index')" wire:navigate>
|
||||
{{ __('potential-clients.cancel') }}
|
||||
</flux:button>
|
||||
<flux:button variant="primary" type="submit">
|
||||
|
||||
@@ -70,7 +70,7 @@ new class extends Component {
|
||||
|
||||
<div>
|
||||
<div class="mb-6">
|
||||
<flux:button variant="ghost" :href="route('admin.potential-clients.show', $potentialClient)" wire:navigate icon="arrow-left">
|
||||
<flux:button variant="outline" :href="route('admin.potential-clients.show', $potentialClient)" wire:navigate icon="arrow-left">
|
||||
{{ __('potential-clients.back_to_details') }}
|
||||
</flux:button>
|
||||
</div>
|
||||
@@ -175,7 +175,7 @@ new class extends Component {
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-end gap-4 border-t border-zinc-200 pt-6">
|
||||
<flux:button variant="ghost" :href="route('admin.potential-clients.show', $potentialClient)" wire:navigate>
|
||||
<flux:button variant="outline" :href="route('admin.potential-clients.show', $potentialClient)" wire:navigate>
|
||||
{{ __('potential-clients.cancel') }}
|
||||
</flux:button>
|
||||
<flux:button variant="primary" type="submit">
|
||||
|
||||
@@ -122,7 +122,7 @@ new class extends Component {
|
||||
</flux:select>
|
||||
</div>
|
||||
@if ($search || $typeFilter)
|
||||
<flux:button wire:click="clearFilters" variant="ghost" icon="x-mark">
|
||||
<flux:button wire:click="clearFilters" variant="outline" icon="x-mark">
|
||||
{{ __('potential-clients.clear_filters') }}
|
||||
</flux:button>
|
||||
@endif
|
||||
@@ -188,7 +188,7 @@ new class extends Component {
|
||||
<td class="whitespace-nowrap px-6 py-4 text-end">
|
||||
<div class="flex items-center justify-end gap-2">
|
||||
<flux:button
|
||||
variant="ghost"
|
||||
variant="outline"
|
||||
size="sm"
|
||||
icon="eye"
|
||||
:href="route('admin.potential-clients.show', $potentialClient)"
|
||||
@@ -196,7 +196,7 @@ new class extends Component {
|
||||
:title="__('potential-clients.view')"
|
||||
/>
|
||||
<flux:button
|
||||
variant="ghost"
|
||||
variant="outline"
|
||||
size="sm"
|
||||
icon="pencil"
|
||||
:href="route('admin.potential-clients.edit', $potentialClient)"
|
||||
@@ -204,7 +204,7 @@ new class extends Component {
|
||||
:title="__('potential-clients.edit')"
|
||||
/>
|
||||
<flux:button
|
||||
variant="ghost"
|
||||
variant="outline"
|
||||
size="sm"
|
||||
icon="trash"
|
||||
wire:click="confirmDelete({{ $potentialClient->id }})"
|
||||
@@ -227,7 +227,7 @@ new class extends Component {
|
||||
@endif
|
||||
</flux:text>
|
||||
@if ($search || $typeFilter)
|
||||
<flux:button wire:click="clearFilters" variant="ghost" class="mt-4">
|
||||
<flux:button wire:click="clearFilters" variant="outline" class="mt-4">
|
||||
{{ __('potential-clients.clear_filters') }}
|
||||
</flux:button>
|
||||
@else
|
||||
@@ -262,7 +262,7 @@ new class extends Component {
|
||||
</div>
|
||||
<div class="flex gap-2">
|
||||
<flux:spacer />
|
||||
<flux:button variant="ghost" wire:click="cancelDelete">
|
||||
<flux:button variant="outline" wire:click="cancelDelete">
|
||||
{{ __('potential-clients.cancel') }}
|
||||
</flux:button>
|
||||
<flux:button variant="danger" wire:click="delete">
|
||||
|
||||
@@ -31,7 +31,7 @@ new class extends Component {
|
||||
<div>
|
||||
<div class="mb-6 flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between">
|
||||
<div>
|
||||
<flux:button variant="ghost" :href="route('admin.potential-clients.index')" wire:navigate icon="arrow-left">
|
||||
<flux:button variant="outline" :href="route('admin.potential-clients.index')" wire:navigate icon="arrow-left">
|
||||
{{ __('potential-clients.back_to_list') }}
|
||||
</flux:button>
|
||||
</div>
|
||||
@@ -176,7 +176,7 @@ new class extends Component {
|
||||
</div>
|
||||
<div class="flex gap-2">
|
||||
<flux:spacer />
|
||||
<flux:button variant="ghost" wire:click="cancelDelete">
|
||||
<flux:button variant="outline" wire:click="cancelDelete">
|
||||
{{ __('potential-clients.cancel') }}
|
||||
</flux:button>
|
||||
<flux:button variant="danger" wire:click="delete">
|
||||
|
||||
Reference in New Issue
Block a user