Apply hover style for lists and min height for dashboard configuration.

This commit is contained in:
2025-02-06 15:16:33 +01:00
parent 3884a54539
commit 53f087eed0
10 changed files with 13 additions and 16 deletions

View File

@@ -5,8 +5,7 @@
<div class="w-full text-center">{{ __('dashboard.No data') }}</div>
@endif
@foreach($unpaid_incoming as $incoming)
<a href="{{ route('incoming.edit', $incoming->id) }}"
class="flex max-w even:bg-gray-100 odd:bg-white">
<a href="{{ route('incoming.edit', $incoming->id) }}" class="flex max-w even:bg-gray-100 odd:bg-white hover:bg-gray-400">
<div class="w-1/6">{{ $incoming->invoice_number }}</div>
<div class="w-1/2">{{ $incoming->supplier->name }}</div>
<div class="w-1/6 text-right">{{ \Illuminate\Support\Number::currency($incoming->gross) }}</div>

View File

@@ -5,8 +5,7 @@
<div class="w-full text-center">{{ __('dashboard.No data') }}</div>
@endif
@foreach($customers as $customer)
<a href="{{ route('customer.edit', $customer->id) }}"
class="flex max-w even:bg-gray-100 odd:bg-white">
<a href="{{ route('customer.edit', $customer->id) }}" class="flex max-w even:bg-gray-100 odd:bg-white hover:bg-gray-400">
<div class="w-1/2">{{ $customer->name }}</div>
<div class="w-1/2">{{ $customer->email }}</div>
</a>

View File

@@ -5,8 +5,7 @@
<div class="w-full text-center">{{ __('dashboard.No data') }}</div>
@endif
@foreach($sent_invoices as $invoice)
<a href="{{ route('payment.create') }}"
class="flex max-w even:bg-gray-100 odd:bg-white">
<a href="{{ route('payment.create') }}" class="flex max-w even:bg-gray-100 odd:bg-white hover:bg-gray-400">
<div class="w-1/4">{{ $invoice->number }}</div>
<div class="w-1/4">{{ $invoice->customer->name }}</div>
<div class="w-1/4 text-right">{{ \Illuminate\Support\Number::currency($invoice->sum) }}</div>

View File

@@ -5,8 +5,7 @@
<div class="w-full text-center">{{ __('dashboard.No data') }}</div>
@endif
@foreach($created_invoices as $invoice)
<a href="{{ route('invoice.edit', $invoice->id) }}"
class="flex max-w even:bg-gray-100 odd:bg-white">
<a href="{{ route('invoice.edit', $invoice->id) }}" class="flex max-w even:bg-gray-100 odd:bg-white hover:bg-gray-400">
<div class="w-1/2">{{ $invoice->number }}</div>
<div class="w-1/2">{{ $invoice->customer->name }}</div>
</a>