mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
Merge branch 'sidebar-view' into 'master'
sidebar-view modified See merge request mohit.panjvani/crater-web!132
This commit is contained in:
@ -127,6 +127,7 @@
|
|||||||
:key="index"
|
:key="index"
|
||||||
class="side-invoice"
|
class="side-invoice"
|
||||||
>
|
>
|
||||||
|
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="inv-name">{{ invoice.user.name }}</div>
|
<div class="inv-name">{{ invoice.user.name }}</div>
|
||||||
<div class="inv-number">{{ invoice.invoice_number }}</div>
|
<div class="inv-number">{{ invoice.invoice_number }}</div>
|
||||||
@ -136,6 +137,7 @@
|
|||||||
<div class="inv-amount" v-html="$utils.formatMoney(invoice.due_amount, invoice.user.currency)" />
|
<div class="inv-amount" v-html="$utils.formatMoney(invoice.due_amount, invoice.user.currency)" />
|
||||||
<div class="inv-date">{{ invoice.formattedInvoiceDate }}</div>
|
<div class="inv-date">{{ invoice.formattedInvoiceDate }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</router-link>
|
</router-link>
|
||||||
<p v-if="!invoices.length" class="no-result">
|
<p v-if="!invoices.length" class="no-result">
|
||||||
{{ $t('invoices.no_matching_invoices') }}
|
{{ $t('invoices.no_matching_invoices') }}
|
||||||
|
|||||||
@ -32,6 +32,11 @@
|
|||||||
margin-bottom: 98px;
|
margin-bottom: 98px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.router-link-exact-active {
|
||||||
|
border-left: 3px solid $ls-color-primary;
|
||||||
|
background-color: $ls-color-gray--very-light;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: $ls-color-gray--very-light;
|
background-color: $ls-color-gray--very-light;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -32,6 +32,11 @@
|
|||||||
margin-bottom: 98px;
|
margin-bottom: 98px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.router-link-exact-active {
|
||||||
|
border-left: 3px solid $ls-color-primary;
|
||||||
|
background-color: $ls-color-gray--very-light;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: $ls-color-gray--very-light;
|
background-color: $ls-color-gray--very-light;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user