@@ -130,7 +138,7 @@
diff --git a/resources/scripts/admin/components/estimate-invoice-common/CreateItems.vue b/resources/scripts/admin/components/estimate-invoice-common/CreateItems.vue
index f5042e90..63953bfe 100644
--- a/resources/scripts/admin/components/estimate-invoice-common/CreateItems.vue
+++ b/resources/scripts/admin/components/estimate-invoice-common/CreateItems.vue
@@ -1,155 +1,113 @@
-
-
-
-
-
-
-
-
-
-
- |
-
-
-
-
- {{ $tc('items.item', 2) }}
-
- |
-
-
-
-
-
- {{ $t('invoices.item.quantity') }}
-
- |
-
-
-
-
-
- {{ $t('invoices.item.price') }}
-
- |
-
+
+
+
+
+
+
+
-
-
-
-
- {{ $t('invoices.item.discount') }}
-
-
- |
-
-
-
-
- {{ $t('invoices.item.amount') }}
-
- |
-
-
-
-
-
-
-
-
+
+
+
+
+ |
+
+
+
+
+ {{ $tc('items.item', 2) }}
+
+ |
+
+
+
+
+
+ {{ $t('invoices.item.quantity') }}
+
+ |
+
+
+
+
+
+ {{ $t('invoices.item.price') }}
+
+ |
+
+
+
+
+
+ {{ $t('invoices.item.discount') }}
+
+ |
+
+
+
+
+
+ {{ $t('invoices.item.amount') }}
+
+ |
+
+
+
+
+
+
+
+ |
-
-
- {{ $t('general.add_new_item') }}
+
+
+ {{ $t('general.add_new_item') }}
+
@@ -180,6 +138,11 @@ const props = defineProps({
type: String,
default: '',
},
+ theadClass: {
+ type: String,
+ default: `px-5 py-3 text-sm not-italic font-medium leading-5
+ text-gray-700 border-t border-b border-gray-200 border-solid dark:text-white dark:border-white/10`
+ },
})
const companyStore = useCompanyStore()
diff --git a/resources/scripts/admin/components/estimate-invoice-common/CreateTotal.vue b/resources/scripts/admin/components/estimate-invoice-common/CreateTotal.vue
index e4ba6e72..3bd7f1ba 100644
--- a/resources/scripts/admin/components/estimate-invoice-common/CreateTotal.vue
+++ b/resources/scripts/admin/components/estimate-invoice-common/CreateTotal.vue
@@ -6,6 +6,7 @@
mt-6
bg-white
border border-gray-200 border-solid
+ dark:bg-gray-800/50 dark:border-white/10
rounded
md:min-w-[390px]
min-w-[300px]
@@ -192,6 +193,7 @@
pt-2
mt-5
border-t border-gray-200 border-solid
+ dark:border-gray-600
"
>
@@ -199,7 +201,7 @@
diff --git a/resources/scripts/admin/components/estimate-invoice-common/CreateTotalTaxes.vue b/resources/scripts/admin/components/estimate-invoice-common/CreateTotalTaxes.vue
index 9ce1fad1..ac7a5394 100644
--- a/resources/scripts/admin/components/estimate-invoice-common/CreateTotalTaxes.vue
+++ b/resources/scripts/admin/components/estimate-invoice-common/CreateTotalTaxes.vue
@@ -17,7 +17,7 @@
diff --git a/resources/scripts/admin/components/estimate-invoice-common/SelectTaxPopup.vue b/resources/scripts/admin/components/estimate-invoice-common/SelectTaxPopup.vue
index 255ff359..cc2c655c 100644
--- a/resources/scripts/admin/components/estimate-invoice-common/SelectTaxPopup.vue
+++ b/resources/scripts/admin/components/estimate-invoice-common/SelectTaxPopup.vue
@@ -44,7 +44,7 @@
>
-
+
@@ -140,6 +142,10 @@
bg-gray-200
border-none
outline-none
+ dark:bg-gray-600/70
+ dark:backdrop-blur-xl
+ dark:shadow-glass
+ dark:hover:bg-gray-600/80
"
@click="openTaxTypeModal"
>
diff --git a/resources/scripts/admin/views/estimates/View.vue b/resources/scripts/admin/views/estimates/View.vue
index a4d0f799..af788df7 100644
--- a/resources/scripts/admin/views/estimates/View.vue
+++ b/resources/scripts/admin/views/estimates/View.vue
@@ -50,6 +50,7 @@
xl:ml-64
w-88
xl:block
+ dark:bg-gray-800
"
>
@@ -96,9 +98,10 @@
px-4
py-1
pb-2
- mb-1 mb-2
+ mb-2
text-sm
border-b border-gray-200 border-solid
+ dark:border-gray-600
"
>
{{ $t('general.sort_by') }}
@@ -161,6 +164,7 @@
overflow-y-scroll
border-l border-gray-200 border-solid
base-scroll
+ dark:border-gray-600
"
>
@@ -169,9 +173,9 @@
:id="'estimate-' + estimate.id"
:to="`/admin/estimates/${estimate.id}/view`"
:class="[
- 'flex justify-between side-estimate p-4 cursor-pointer hover:bg-gray-100 items-center border-l-4 border-transparent',
+ 'flex justify-between side-estimate p-4 cursor-pointer hover:bg-gray-100 items-center border-l-4 border-transparent dark:hover:bg-gray-700',
{
- 'bg-gray-100 border-l-4 border-primary-500 border-solid':
+ 'bg-gray-100 border-l-4 border-primary-500 border-solid dark:border-primary-400 dark:bg-gray-700':
hasActiveUrl(estimate.id),
},
]"
@@ -191,6 +195,7 @@
text-black
capitalize
truncate
+ dark:text-white
"
/>
@@ -203,6 +208,7 @@
font-medium
leading-5
text-gray-600
+ dark:text-gray-400
"
>
{{ estimate.estimate_number }}
@@ -228,6 +234,7 @@
font-semibold
leading-8
text-right text-gray-900
+ dark:text-white
"
/>
@@ -239,6 +246,7 @@
leading-5
text-right text-gray-600
est-date
+ dark:text-gray-400
"
>
{{ estimate.formatted_estimate_date }}
@@ -251,7 +259,7 @@
{{ $t('estimates.no_matching_estimates') }}
diff --git a/resources/scripts/admin/views/invoices/View.vue b/resources/scripts/admin/views/invoices/View.vue
index 6e282934..c3f46d27 100644
--- a/resources/scripts/admin/views/invoices/View.vue
+++ b/resources/scripts/admin/views/invoices/View.vue
@@ -299,6 +299,7 @@ onSearched = debounce(onSearched, 500)
xl:ml-64
w-88
xl:block
+ dark:bg-gray-800
"
>
@@ -339,9 +341,10 @@ onSearched = debounce(onSearched, 500)
px-2
py-1
pb-2
- mb-1 mb-2
+ mb-2
text-sm
border-b border-gray-200 border-solid
+ dark:border-gray-600
"
>
{{ $t('general.sort_by') }}
@@ -404,6 +407,7 @@ onSearched = debounce(onSearched, 500)
overflow-y-scroll
border-l border-gray-200 border-solid
base-scroll
+ dark:border-gray-600
"
>
@@ -412,9 +416,9 @@ onSearched = debounce(onSearched, 500)
:id="'invoice-' + invoice.id"
:to="`/admin/invoices/${invoice.id}/view`"
:class="[
- 'flex justify-between side-invoice p-4 cursor-pointer hover:bg-gray-100 items-center border-l-4 border-transparent',
+ 'flex justify-between side-invoice p-4 cursor-pointer hover:bg-gray-100 items-center border-l-4 border-transparent dark:hover:bg-gray-700',
{
- 'bg-gray-100 border-l-4 border-primary-500 border-solid':
+ 'bg-gray-100 border-l-4 border-primary-500 border-solid dark:bg-gray-700':
hasActiveUrl(invoice.id),
},
]"
@@ -434,6 +438,7 @@ onSearched = debounce(onSearched, 500)
text-black
capitalize
truncate
+ dark:text-white
"
/>
@@ -446,16 +451,17 @@ onSearched = debounce(onSearched, 500)
font-medium
leading-5
text-gray-600
+ dark:text-gray-400
"
>
{{ invoice.invoice_number }}
-
{{ invoice.status }}
-
+
@@ -468,6 +474,7 @@ onSearched = debounce(onSearched, 500)
leading-8
text-right text-gray-900
block
+ dark:text-white
"
:amount="invoice.total"
:currency="invoice.customer.currency"
@@ -480,6 +487,7 @@ onSearched = debounce(onSearched, 500)
leading-5
text-right text-gray-600
est-date
+ dark:text-gray-400
"
>
{{ invoice.formatted_invoice_date }}
@@ -492,7 +500,7 @@ onSearched = debounce(onSearched, 500)
{{ $t('invoices.no_matching_invoices') }}
diff --git a/resources/scripts/admin/views/payments/View.vue b/resources/scripts/admin/views/payments/View.vue
index 0b08827e..53b60168 100644
--- a/resources/scripts/admin/views/payments/View.vue
+++ b/resources/scripts/admin/views/payments/View.vue
@@ -35,6 +35,7 @@
xl:ml-64
w-88
xl:block
+ dark:bg-gray-800
"
>
{{ $t('general.sort_by') }}
@@ -139,7 +142,7 @@
|