diff --git a/public/css/custom.css b/public/css/custom.css
index 782df8eb2..9dc5ca04f 100644
--- a/public/css/custom.css
+++ b/public/css/custom.css
@@ -8,8 +8,18 @@
}
+/*--------Selection Reference--------*/
+::selection
+{
+ background-color: #3c3f72;
+ color: #ffffff;
+}
+/*--------Selection Reference Finish--------*/
+
+
/*--------Credit Card--------*/
-.card-input__input:hover, .card-input__input:focus {
+.card-input__input:hover, .card-input__input:focus
+{
border-color: #55588b !important;
}
/*--------Credit Card Finish--------*/
diff --git a/public/css/element.css b/public/css/element.css
index 44836cabf..829351f49 100644
--- a/public/css/element.css
+++ b/public/css/element.css
@@ -15428,12 +15428,17 @@
.el-select-icon
{
- padding-left: 4px;
+ padding-left: 0.2rem;
}
.el-select .el-input .el-input__inner
{
- padding-left: 39px;
+ padding-left: 38px;
+}
+
+.form-control.datepicker.flatpickr-input
+{
+ padding-left: 2px;
}
/*--------El Select Icon Finish--------*/
diff --git a/resources/views/purchases/vendors/show.blade.php b/resources/views/purchases/vendors/show.blade.php
index 2c14208af..e419551b6 100644
--- a/resources/views/purchases/vendors/show.blade.php
+++ b/resources/views/purchases/vendors/show.blade.php
@@ -47,7 +47,7 @@
- {{ trans('general.edit') }}
+ {{ trans('general.edit') }}
@@ -116,8 +116,8 @@
{{ trans('general.date') }} |
- {{ trans('general.amount') }} |
- {{ trans_choice('general.categories', 1) }} |
+ {{ trans('general.amount') }} |
+ {{ trans_choice('general.categories', 1) }} |
{{ trans_choice('general.accounts', 1) }} |
@@ -125,8 +125,8 @@
@foreach($transactions as $item)
@date($item->paid_at) |
- @money($item->amount, $item->currency_code, true) |
- {{ $item->category ? $item->category->name : trans('general.na') }} |
+ @money($item->amount, $item->currency_code, true) |
+ {{ $item->category ? $item->category->name : trans('general.na') }} |
{{ $item->account->name }} |
@endforeach
@@ -146,20 +146,20 @@
- {{ trans_choice('general.numbers', 1) }} |
- {{ trans('general.amount') }} |
- {{ trans('bills.bill_date') }} |
- {{ trans('bills.due_date') }} |
+ {{ trans_choice('general.numbers', 1) }} |
+ {{ trans('general.amount') }} |
+ {{ trans('bills.bill_date') }} |
+ {{ trans('bills.due_date') }} |
{{ trans_choice('general.statuses', 1) }} |
@foreach($bills as $item)
- {{ $item->bill_number }} |
- @money($item->amount, $item->currency_code, true) |
- @date($item->billed_at) |
- @date($item->due_at) |
+ {{ $item->bill_number }} |
+ @money($item->amount, $item->currency_code, true) |
+ @date($item->billed_at) |
+ @date($item->due_at) |
{{ trans('bills.statuses.' . $item->status) }} |
@endforeach
diff --git a/resources/views/sales/customers/show.blade.php b/resources/views/sales/customers/show.blade.php
index e6e29ac6a..883c799a2 100644
--- a/resources/views/sales/customers/show.blade.php
+++ b/resources/views/sales/customers/show.blade.php
@@ -44,7 +44,7 @@
- {{ trans('general.edit') }}
+ {{ trans('general.edit') }}
@@ -112,7 +112,7 @@
{{ trans('general.date') }} |
- {{ trans('general.amount') }} |
+ {{ trans('general.amount') }} |
{{ trans_choice('general.categories', 1) }} |
{{ trans_choice('general.accounts', 1) }} |
@@ -121,7 +121,7 @@
@foreach($transactions as $item)
@date($item->paid_at) |
- @money($item->amount, $item->currency_code, true) |
+ @money($item->amount, $item->currency_code, true) |
{{ $item->category ? $item->category->name : trans('general.na') }} |
{{ $item->account->name }} |
@@ -141,20 +141,20 @@
- {{ trans_choice('general.numbers', 1) }} |
- {{ trans('general.amount') }} |
- {{ trans('invoices.invoice_date') }} |
- {{ trans('invoices.due_date') }} |
+ {{ trans_choice('general.numbers', 1) }} |
+ {{ trans('general.amount') }} |
+ {{ trans('invoices.invoice_date') }} |
+ {{ trans('invoices.due_date') }} |
{{ trans_choice('general.statuses', 1) }} |
@foreach($invoices as $item)
- {{ $item->invoice_number }} |
- @money($item->amount, $item->currency_code, true) |
- @date($item->invoiced_at) |
- @date($item->due_at) |
+ {{ $item->invoice_number }} |
+ @money($item->amount, $item->currency_code, true) |
+ @date($item->invoiced_at) |
+ @date($item->due_at) |
{{ trans('invoices.statuses.' . $item->status) }} |
@endforeach