diff --git a/app/views/accounts/details.blade.php b/app/views/accounts/details.blade.php
index 03e0bb2cd561..a82dedcdf656 100755
--- a/app/views/accounts/details.blade.php
+++ b/app/views/accounts/details.blade.php
@@ -75,7 +75,7 @@
- {{ Button::lg_primary_submit('Save') }}
+ {{ Button::lg_primary_submit('Save')->append_with_icon('floppy-disk') }}
{{ Former::close() }}
diff --git a/app/views/accounts/import_export.blade.php b/app/views/accounts/import_export.blade.php
index 4f3841092ebd..1f1e21d030ac 100755
--- a/app/views/accounts/import_export.blade.php
+++ b/app/views/accounts/import_export.blade.php
@@ -6,12 +6,12 @@
{{ Former::open_for_files('company/import_map')->addClass('col-md-9 col-md-offset-1') }}
{{ Former::legend('Import Client Data') }}
{{ Former::file('file')->label('Select CSV file') }}
- {{ Former::actions( Button::lg_primary_submit('Upload') ) }}
+ {{ Former::actions( Button::lg_info_submit('Upload')->append_with_icon('open') ) }}
{{ Former::close() }}
{{ Former::open('company/export')->addClass('col-md-9 col-md-offset-1') }}
{{ Former::legend('Export Client Data') }}
- {{ Former::actions( Button::lg_primary_submit('Download') ) }}
+ {{ Former::actions( Button::lg_primary_submit('Download')->append_with_icon('download-alt') ) }}
{{ Former::close() }}
@stop
\ No newline at end of file
diff --git a/app/views/accounts/notifications.blade.php b/app/views/accounts/notifications.blade.php
index 2e8790306654..1759187d446c 100755
--- a/app/views/accounts/notifications.blade.php
+++ b/app/views/accounts/notifications.blade.php
@@ -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') ) }}
+ {{ Former::actions( Button::lg_primary_submit('Save')->append_with_icon('floppy-disk') ) }}
{{ Former::close() }}
@stop
\ No newline at end of file
diff --git a/app/views/accounts/payments.blade.php b/app/views/accounts/payments.blade.php
index 058c4354cf15..9075f9034579 100755
--- a/app/views/accounts/payments.blade.php
+++ b/app/views/accounts/payments.blade.php
@@ -45,7 +45,7 @@
@endforeach
- {{ Former::actions( Button::lg_primary_submit('Save') ) }}
+ {{ Former::actions( Button::lg_primary_submit('Save')->append_with_icon('floppy-disk') ) }}
{{ Former::close() }}
diff --git a/public/css/style.css b/public/css/style.css
index 119ee9a47ab1..8623ed0acbb4 100755
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -88,6 +88,13 @@ background: url('../images/sort_asc.png') no-repeat 90% 50%;
table.table thead .sorting_desc {
background: url('../images/sort_desc.png') no-repeat 90% 50%;
}
+table.dataTable thead th, table.dataTable thead td, table.invoice-table thead th, table.invoice-table thead td {
+padding: 12px 10px;
+}
+table.dataTable tbody th, table.dataTable tbody td {
+padding: 10px;
+}
+
.datepicker {
padding: 4px !important;
margin-top: 1px;