mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #4366 from beganovich/v5-fix-confirmation-page
(v5) Fix buttons on user pages
This commit is contained in:
commit
6420abd429
1288
package-lock.json
generated
1288
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -34,7 +34,7 @@
|
||||
@enderror
|
||||
</div>
|
||||
<div class="mt-5">
|
||||
<button class="button button-primary button-block">{{ ctrans('texts.update') }}</button>
|
||||
<button class="button button-primary button-block bg-blue-600">{{ ctrans('texts.update') }}</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
@ -8,7 +8,7 @@
|
||||
<img src="{{ asset('images/invoiceninja-black-logo-2.png') }}" class="border-b border-gray-100 h-18 pb-4" alt="Invoice Ninja logo">
|
||||
<h1 class="text-center text-3xl mt-10">{{ ctrans('texts.confirmation') }}</h1>
|
||||
<p class="text-center opacity-75">{{ $message }}</p>
|
||||
<a class="button button-primary text-center mt-8" href="{{ url('/') }}">{{ ctrans('texts.return_to_login') }}</a>
|
||||
<a class="button button-primary text-blue-600 text-center mt-8" href="{{ url('/') }}">{{ ctrans('texts.return_to_login') }}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -28,7 +28,7 @@
|
||||
@enderror
|
||||
</div>
|
||||
<div class="mt-5">
|
||||
<button class="button button-primary button-block">{{ ctrans('texts.next_step') }}</button>
|
||||
<button class="button button-primary button-block bg-blue-600">{{ ctrans('texts.next_step') }}</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
@ -23,11 +23,11 @@
|
||||
</section>
|
||||
<div class="flex items-center">
|
||||
@if($entity instanceof App\Models\Invoice)
|
||||
<button class="button button-primary">{{ ctrans('texts.pay_now') }}</button>
|
||||
<button class="button button-primary bg-blue-600">{{ ctrans('texts.pay_now') }}</button>
|
||||
@elseif($$entity instanceof App\Models\Quote)
|
||||
<button class="button button-primary">{{ ctrans('texts.approve') }}</button>
|
||||
<button class="button button-primary bg-blue-600">{{ ctrans('texts.approve') }}</button>
|
||||
@endif
|
||||
<button class="button button-primary ml-2">{{ ctrans('texts.download') }}</button>
|
||||
<button class="button button-primary bg-blue-600 ml-2">{{ ctrans('texts.download') }}</button>
|
||||
<div x-data="{ open: false }" @keydown.escape="open = false" @click.away="open = false" class="relative inline-block text-left ml-2">
|
||||
<div>
|
||||
<button @click="open = !open" class="flex items-center text-gray-400 hover:text-gray-600 focus:outline-none focus:text-gray-600">
|
||||
|
@ -22,7 +22,7 @@
|
||||
@endif
|
||||
</div>
|
||||
<div class="mt-5">
|
||||
<button class="button button-primary button-block">{{ ctrans('texts.continue') }}</button>
|
||||
<button class="button button-primary button-block bg-blue-600">{{ ctrans('texts.continue') }}</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user