Merge pull request #1216 from batuhawk/master

Price paid and carousel description style updated
This commit is contained in:
Batuhan Baş 2020-02-02 11:58:55 +03:00 committed by GitHub
commit ce07a1be4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 3 deletions

View File

@ -15538,6 +15538,9 @@
background-color: #3c3f72 !important;
color: #ffffff;
text-align: center;
border-bottom-left-radius: 0.375rem;
border-bottom-right-radius: 0.375rem;
}
.el-carousel__arrow

View File

@ -246,8 +246,10 @@
@stack($total->code . '_td_end')
@else
@if ($invoice->paid)
<tr class="text-success">
<th>{{ trans('invoices.paid') }}:</th>
<tr>
<th class="text-success">
{{ trans('invoices.paid') }}:
</th>
<td class="text-right">- @money($invoice->paid, $invoice->currency_code, true)</td>
</tr>
@endif

View File

@ -426,7 +426,9 @@
@else
@if ($invoice->paid)
<tr>
<th class="text-success">{{ trans('invoices.paid') }}:</th>
<th class="text-success">
{{ trans('invoices.paid') }}:
</th>
<td class="text-success text-right">- @money($invoice->paid, $invoice->currency_code, true)</td>
</tr>
@endif