This commit is contained in:
James Cole
2020-08-28 21:29:47 +02:00
parent 82b49a9e51
commit 7f48043505
21 changed files with 33 additions and 33 deletions

View File

@@ -27,7 +27,7 @@
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
<div style="padding:8px;"> <div style="padding:8px;">
<a href="{{ route('accounts.create', objectType) }}" class="btn btn-success"><i class="fa fa-plus fa-fw"></i> {{ ('make_new_' ~ objectType ~ '_account')|_ }}</a> <a href="{{ route('accounts.create', objectType) }}" class="btn btn-success"><i class="fa fa-plus fa-fw"></i> {{ ('make_new_' ~ objectType ~ '_account')|_ }}</a>
</div> </div>

View File

@@ -66,8 +66,8 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'transaction_journal_meta'|_ }}</h3> <h3 class="box-title">{{ 'transaction_journal_meta'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
<table class="table table-hover"> <table class="table table-responsive table-hover">
<tbody> <tbody>
<tr> <tr>
<td>{{ 'categories'|_ }}</td> <td>{{ 'categories'|_ }}</td>

View File

@@ -40,7 +40,7 @@
{{ 'attachments'|_ }} {{ 'attachments'|_ }}
</h3> </h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
{% include 'list.attachments' %} {% include 'list.attachments' %}
</div> </div>
</div> </div>

View File

@@ -10,8 +10,8 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'all_users'|_ }}</h3> <h3 class="box-title">{{ 'all_users'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
<table class="table table-condensed sortable"> <table class="table table-responsive table-condensed sortable">
<thead> <thead>
<tr> <tr>
<th data-defaultsign="_19" class="hidden-xs" colspan="2">&nbsp;</th> <th data-defaultsign="_19" class="hidden-xs" colspan="2">&nbsp;</th>

View File

@@ -10,8 +10,8 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'user_information'|_ }}</h3> <h3 class="box-title">{{ 'user_information'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive"> <div class="box-body">
<table class="table table-striped table-bordered"> <table class="table table-striped table-bordered table-responsive">
<tbody> <tbody>
<tr> <tr>
<td>{{ trans('list.id') }}</td> <td>{{ trans('list.id') }}</td>
@@ -75,8 +75,8 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'user_data_information'|_ }}</h3> <h3 class="box-title">{{ 'user_data_information'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive"> <div class="box-body">
<table class="table table-striped table-bordered"> <table class="table table-striped table-bordered table-responsive">
<tr> <tr>
<td>{{ trans('list.accounts_count') }}</td> <td>{{ trans('list.accounts_count') }}</td>
<td>{{ information.accounts }}</td> <td>{{ information.accounts }}</td>

View File

@@ -22,7 +22,7 @@
</div> </div>
</div> </div>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
<div style="padding:8px;"> <div style="padding:8px;">
<a class="btn btn-success" href="{{ route('bills.create') }}"><i class="fa fa-plus fa-fw"></i> {{ 'create_new_bill'|_ }}</a> <a class="btn btn-success" href="{{ route('bills.create') }}"><i class="fa fa-plus fa-fw"></i> {{ 'create_new_bill'|_ }}</a>
</div> </div>

View File

@@ -109,7 +109,7 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'notes'|_ }}</h3> <h3 class="box-title">{{ 'notes'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive"> <div class="box-body">
{{ object.data.notes|markdown }} {{ object.data.notes|markdown }}
</div> </div>
</div> </div>
@@ -121,7 +121,7 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'attachments'|_ }}</h3> <h3 class="box-title">{{ 'attachments'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
{% include 'list.attachments' %} {% include 'list.attachments' %}
</div> </div>
</div> </div>

View File

@@ -46,7 +46,7 @@
{{ 'attachments'|_ }} {{ 'attachments'|_ }}
</h3> </h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
{% include 'list.attachments' %} {% include 'list.attachments' %}
</div> </div>
</div> </div>

View File

@@ -56,7 +56,7 @@
{{ 'attachments'|_ }} {{ 'attachments'|_ }}
</h3> </h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
{% include 'list.attachments' %} {% include 'list.attachments' %}
</div> </div>
</div> </div>

View File

@@ -1,7 +1,7 @@
<div style="padding-left:8px;"> <div style="padding-left:8px;">
{{ accounts.render|raw }} {{ accounts.render|raw }}
</div> </div>
<table class="table table-hover" id="sortable-table"> <table class="table table-responsive table-hover" id="sortable-table">
<thead> <thead>
<tr> <tr>
<th class="hidden-sm hidden-xs">&nbsp;</th> <th class="hidden-sm hidden-xs">&nbsp;</th>

View File

@@ -1,4 +1,4 @@
<table class="table table-hover"> <table class="table table-responsive table-hover">
{% for attachment in attachments %} {% for attachment in attachments %}
<tr> <tr>
<td style="width:120px;"> <td style="width:120px;">

View File

@@ -1,7 +1,7 @@
<div style="padding-left:8px;"> <div style="padding-left:8px;">
{{ paginator.render|raw }} {{ paginator.render|raw }}
</div> </div>
<table class="table table-hover" id="bill-sortable"> <table class="table table-responsive table-hover" id="bill-sortable">
<thead> <thead>
<tr> <tr>
<th class="hidden-sm hidden-xs">&nbsp;</th> <th class="hidden-sm hidden-xs">&nbsp;</th>

View File

@@ -1,4 +1,4 @@
<table class="table table-hover"> <table class="table table-hover table-responsive">
<tr> <tr>
{% if showPiggyBank %} {% if showPiggyBank %}
<th>{{ trans('list.piggy_bank') }}</th> <th>{{ trans('list.piggy_bank') }}</th>

View File

@@ -5,7 +5,7 @@
<h3 class="box-title">{{ ('no_'~type~'_title_'~objectType)|_ }}</h3> <h3 class="box-title">{{ ('no_'~type~'_title_'~objectType)|_ }}</h3>
</div> </div>
<div class="box-body table-responsive"> <div class="box-body">
<p> <p>
{{ ('no_'~type~'_intro_'~objectType)|_ }} {{ ('no_'~type~'_intro_'~objectType)|_ }}
</p> </p>

View File

@@ -33,8 +33,8 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'account_status'|_ }}</h3> <h3 class="box-title">{{ 'account_status'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
<table class="table table-hover" id="accountStatus"> <table class="table table-responsive table-hover" id="accountStatus">
<thead> <thead>
<tr> <tr>
<th>{{ 'account'|_ }}</th> <th>{{ 'account'|_ }}</th>

View File

@@ -30,8 +30,8 @@
</div> </div>
</div> </div>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
<table class="table table-hover" id="piggyDetails"> <table class="table table-responsive table-hover" id="piggyDetails">
<tr> <tr>
<td style="width:40%;">{{ 'account'|_ }}</td> <td style="width:40%;">{{ 'account'|_ }}</td>
<td><a href="{{ route('accounts.show', piggyBank.account_id) }}">{{ piggyBank.account.name }}</a></td> <td><a href="{{ route('accounts.show', piggyBank.account_id) }}">{{ piggyBank.account.name }}</a></td>
@@ -96,7 +96,7 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'transactions'|_ }}</h3> <h3 class="box-title">{{ 'transactions'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive no-padding" id="piggyEvents"> <div class="box-body no-padding" id="piggyEvents">
{% include 'list/piggy-bank-events' %} {% include 'list/piggy-bank-events' %}
</div> </div>
</div> </div>
@@ -125,7 +125,7 @@
{{ 'attachments'|_ }} {{ 'attachments'|_ }}
</h3> </h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
{% include 'list.attachments' %} {% include 'list.attachments' %}
</div> </div>
</div> </div>

View File

@@ -24,7 +24,7 @@
</div> </div>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
<div style="padding:8px;"> <div style="padding:8px;">
<a href="{{ route('recurring.create') }}" class="btn btn-success"><i class="fa fa-plus fa-fw"></i> {{ ('make_new_recurring')|_ }} <a href="{{ route('recurring.create') }}" class="btn btn-success"><i class="fa fa-plus fa-fw"></i> {{ ('make_new_recurring')|_ }}
</a> </a>
@@ -34,7 +34,7 @@
<div style="padding-left:8px;"> <div style="padding-left:8px;">
{{ paginator.render|raw }} {{ paginator.render|raw }}
</div> </div>
<table class="table table-hover sortable"> <table class="table table-responsive table-hover sortable">
<thead> <thead>
<tr> <tr>
<th class="hidden-sm hidden-xs" data-defaultsort="disabled">&nbsp;</th> <th class="hidden-sm hidden-xs" data-defaultsort="disabled">&nbsp;</th>

View File

@@ -51,7 +51,7 @@
</em> </em>
</div> </div>
{% else %} {% else %}
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
<p style="padding:10px;"> <p style="padding:10px;">
{{ trans('firefly.audit_end_balance', {{ trans('firefly.audit_end_balance',
{ {

View File

@@ -1,4 +1,4 @@
<table class="table table-hover table-compressed"> <table class="table table-hover table-compressed table-responsive ">
<thead> <thead>
<tr class="ignore"> <tr class="ignore">
<th class="hide-buttons">&nbsp;</th> <th class="hide-buttons">&nbsp;</th>

View File

@@ -120,7 +120,7 @@
{{ 'attachments'|_ }} {{ 'attachments'|_ }}
</h3> </h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
{% include 'list.attachments' %} {% include 'list.attachments' %}
</div> </div>
</div> </div>

View File

@@ -381,7 +381,7 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'attachments'|_ }}</h3> <h3 class="box-title">{{ 'attachments'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
{% include 'list.attachments' with {attachments: attachments[journal.transaction_journal_id]} %} {% include 'list.attachments' with {attachments: attachments[journal.transaction_journal_id]} %}
</div> </div>
</div> </div>
@@ -393,7 +393,7 @@
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title">{{ 'piggy_events'|_ }}</h3> <h3 class="box-title">{{ 'piggy_events'|_ }}</h3>
</div> </div>
<div class="box-body table-responsive no-padding"> <div class="box-body no-padding">
<table class="table table-hover"> <table class="table table-hover">
{% for event in events[journal.transaction_journal_id] %} {% for event in events[journal.transaction_journal_id] %}
<tr> <tr>