mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-18 09:04:35 +01:00
Merge pull request #16 from raziraz/master
Dashboard table headers, global button change.
This commit is contained in:
commit
ad092ef43c
@ -75,7 +75,7 @@
|
||||
</div>
|
||||
|
||||
<center>
|
||||
{{ Button::lg_primary_submit('Save')->append_with_icon('floppy-disk') }}
|
||||
{{ Button::lg_success_submit('Save')->append_with_icon('floppy-disk') }}
|
||||
</center>
|
||||
|
||||
{{ Former::close() }}
|
||||
|
@ -18,7 +18,7 @@
|
||||
{{ Former::textarea('invoice_terms')->label('Set default invoice terms') }}
|
||||
{{ Former::textarea('email_footer')->label('Set default email signature') }}
|
||||
|
||||
{{ Former::actions( Button::lg_primary_submit('Save')->append_with_icon('floppy-disk') ) }}
|
||||
{{ Former::actions( Button::lg_success_submit('Save')->append_with_icon('floppy-disk') ) }}
|
||||
{{ Former::close() }}
|
||||
|
||||
@stop
|
@ -45,7 +45,7 @@
|
||||
|
||||
@endforeach
|
||||
|
||||
{{ Former::actions( Button::lg_primary_submit('Save')->append_with_icon('floppy-disk') ) }}
|
||||
{{ Former::actions( Button::lg_success_submit('Save')->append_with_icon('floppy-disk') ) }}
|
||||
{{ Former::close() }}
|
||||
|
||||
|
||||
|
@ -148,10 +148,8 @@
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<center class="buttons">
|
||||
{{ Button::lg_primary_submit('Save')->append_with_icon('floppy-disk') }}
|
||||
{{ Button::lg_primary_submit_success('Save')->append_with_icon('floppy-disk') }}
|
||||
{{ Button::lg_default_link('clients/' . ($client ? $client->public_id : ''), 'Cancel')->append_with_icon('remove-circle'); }}
|
||||
</center>
|
||||
|
||||
|
@ -28,10 +28,9 @@
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<center style="margin-top:16px">
|
||||
{{ Button::lg_primary_submit('Save') }} |
|
||||
{{ link_to('credits/' . ($credit ? $credit->public_id : ''), 'Cancel') }}
|
||||
<center class="buttons">
|
||||
{{ Button::lg_primary_submit_success('Save')->append_with_icon('floppy-disk') }}
|
||||
{{ Button::lg_default_link('credits/' . ($credit ? $credit->public_id : ''), 'Cancel')->append_with_icon('remove-circle'); }}
|
||||
</center>
|
||||
|
||||
{{ Former::close() }}
|
||||
|
@ -98,8 +98,8 @@
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-default dashboard" style="min-height:320px">
|
||||
<div class="panel-heading">
|
||||
<div class="panel panel-default dashboard" style="min-height:320px;">
|
||||
<div class="panel-heading" style="margin:0;">
|
||||
<h3 class="panel-title">
|
||||
<i class="glyphicon glyphicon-time"></i> Upcoming invoices
|
||||
</h3>
|
||||
|
@ -32,9 +32,9 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<center style="margin-top:16px">
|
||||
{{ Button::lg_primary_submit_success('Save') }} |
|
||||
{{ link_to('payments/' . ($payment ? $payment->public_id : ''), 'Cancel') }}
|
||||
<center class="buttons">
|
||||
{{ Button::lg_primary_submit_success('Save')->append_with_icon('floppy-disk') }}
|
||||
{{ Button::lg_default_link('payments/' . ($payment ? $payment->public_id : ''), 'Cancel')->append_with_icon('remove-circle'); }}
|
||||
</center>
|
||||
|
||||
{{ Former::close() }}
|
||||
|
@ -448,6 +448,8 @@ background-clip: padding-box;
|
||||
}
|
||||
.panel-body {padding: 25px;}
|
||||
|
||||
.dashboard .panel-heading { margin: -1px; }
|
||||
|
||||
.dashboard .panel-body {padding: 0;}
|
||||
|
||||
.dashboard .table-striped>tbody>tr>td, .table-striped>tbody>tr>th { background-color: #fbfbfb;}
|
||||
|
Loading…
Reference in New Issue
Block a user