mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Show default view as full-screen for invoices
This commit is contained in:
parent
0d0e3510db
commit
6526e5e378
@ -104,8 +104,8 @@
|
||||
</button>
|
||||
</form>
|
||||
@endif
|
||||
<a href="{{ route('client.invoice.show', $invoice->hashed_id) }}" class="button-link text-primary">
|
||||
@lang('texts.view')
|
||||
<a href="{{ route('client.invoice.show', $invoice->hashed_id) }}?mode=fullscreen" class="button-link text-primary">
|
||||
{{ ctrans('texts.view') }}
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
@ -132,4 +132,4 @@
|
||||
|
||||
@push('footer')
|
||||
<script src="{{ asset('js/clients/invoices/action-selectors.js') }}"></script>
|
||||
@endpush
|
||||
@endpush
|
||||
|
@ -1,6 +1,6 @@
|
||||
<style>
|
||||
:root {
|
||||
--primary-color: {{ $settings->primary_color }};
|
||||
--primary-color: {{ isset($settings) ? optional($settings)->primary_color : '#1c64f2' }};
|
||||
}
|
||||
|
||||
.bg-primary {
|
||||
@ -8,11 +8,11 @@
|
||||
}
|
||||
|
||||
.bg-primary-darken {
|
||||
background-color: vaR(--primary-color);
|
||||
background-color: var(--primary-color);
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: var(--primary-color);
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
@ -19,7 +19,11 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center">
|
||||
<div class="inline-flex rounded-md shadow-sm">
|
||||
<a href="{{ route('client.invoice.show', $invoice->hashed_id) }}" class="mr-4 text-primary">
|
||||
← {{ ctrans('texts.client_portal') }}
|
||||
</a>
|
||||
|
||||
<div class="inline-flex items-center rounded-md shadow-sm">
|
||||
<input type="hidden" name="invoices[]" value="{{ $invoice->hashed_id }}">
|
||||
<input type="hidden" name="action" value="payment">
|
||||
<button class="button button-primary bg-primary">{{ ctrans('texts.pay_now') }}</button>
|
||||
|
Loading…
Reference in New Issue
Block a user