diff --git a/resources/assets/js/views/invoices/View.vue b/resources/assets/js/views/invoices/View.vue index 0bb594de..87cc4f55 100644 --- a/resources/assets/js/views/invoices/View.vue +++ b/resources/assets/js/views/invoices/View.vue @@ -123,17 +123,19 @@ v-for="(invoice,index) in invoices" :to="`/admin/invoices/${invoice.id}/view`" :key="index" - class="side-invoice" + class="side-invoice" > -
-
{{ invoice.user.name }}
-
{{ invoice.invoice_number }}
-
{{ invoice.status }}
-
-
-
-
{{ invoice.formattedInvoiceDate }}
-
+ +
+
{{ invoice.user.name }}
+
{{ invoice.invoice_number }}
+
{{ invoice.status }}
+
+
+
+
{{ invoice.formattedInvoiceDate }}
+
+

{{ $t('invoices.no_matching_invoices') }} @@ -178,7 +180,7 @@ export default { shareableLink () { return `/invoices/pdf/${this.invoice.unique_hash}` } - }, + }, watch: { $route (to, from) { this.loadInvoice() diff --git a/resources/assets/sass/pages/estimates/view.scss b/resources/assets/sass/pages/estimates/view.scss index 8bb8f676..6b7aad04 100644 --- a/resources/assets/sass/pages/estimates/view.scss +++ b/resources/assets/sass/pages/estimates/view.scss @@ -31,9 +31,17 @@ &:last-child { margin-bottom: 98px; } + + &.router-link-exact-active { + border-left: 3px solid #645ddb; + } + + &.router-link-exact-active { + background-color: #F9FBFF; + } &:hover { - background-color: $ls-color-gray--very-light; + background-color: #F9FBFF; } .left { diff --git a/resources/assets/sass/pages/invoices/view.scss b/resources/assets/sass/pages/invoices/view.scss index 04a8bcc7..0ca23a26 100644 --- a/resources/assets/sass/pages/invoices/view.scss +++ b/resources/assets/sass/pages/invoices/view.scss @@ -32,8 +32,16 @@ margin-bottom: 98px; } + &.router-link-exact-active { + border-left: 3px solid #645ddb; + } + + &.router-link-exact-active { + background-color: #F9FBFF; + } + &:hover { - background-color: $ls-color-gray--very-light; + background-color: #F9FBFF; } .left {