hide button and checkbox [skip ci]

This commit is contained in:
James Cole 2020-03-22 08:18:05 +01:00
parent 53b77e6bf9
commit 87273e232a
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -29,8 +29,8 @@ TODO: hide and show columns
{% if showBudget %} {% if showBudget %}
<th class="hidden-xs">{{ trans('list.budget') }}</th> <th class="hidden-xs">{{ trans('list.budget') }}</th>
{% endif %} {% endif %}
<th>&nbsp;</th> <th class="hidden-xs">&nbsp;</th><!-- actions -->
<th>&nbsp;</th> <th class="hidden-xs">&nbsp;</th><!-- checkbox -->
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -61,7 +61,7 @@ TODO: hide and show columns
{% else %} {% else %}
<td style="border-top:1px #aaa solid;" colspan="2">&nbsp;</td> <td style="border-top:1px #aaa solid;" colspan="2">&nbsp;</td>
{% endif %} {% endif %}
<td style="border-top:1px #aaa solid;"> <td style="border-top:1px #aaa solid;" class="hidden-xs">
<div class="btn-group btn-group-xs pull-right"> <div class="btn-group btn-group-xs pull-right">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{{ 'actions'|_ }} <span class="caret"></span></button> {{ 'actions'|_ }} <span class="caret"></span></button>
@ -72,7 +72,7 @@ TODO: hide and show columns
</ul> </ul>
</div> </div>
</td> </td>
<td style="border-top:1px #aaa solid;">&nbsp;</td> <td style="border-top:1px #aaa solid;" class="hidden-xs">&nbsp;</td>
</tr> </tr>
{% endif %} {% endif %}
{% for index, transaction in group.transactions %} {% for index, transaction in group.transactions %}
@ -178,7 +178,7 @@ TODO: hide and show columns
{% endif %} {% endif %}
{% if group.count == 1 %} {% if group.count == 1 %}
<td style=" {{ style|raw }};"> <td style=" {{ style|raw }};" class="hidden-xs">
<div class="btn-group btn-group-xs pull-right"> <div class="btn-group btn-group-xs pull-right">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{{ 'actions'|_ }} <span class="caret"></span></button> {{ 'actions'|_ }} <span class="caret"></span></button>
@ -194,11 +194,11 @@ TODO: hide and show columns
{% endif %} {% endif %}
{% if group.count != 1 %} {% if group.count != 1 %}
<td style=" {{ style|raw }};"> <td style=" {{ style|raw }};" class="hidden-xs">
&nbsp; &nbsp;
</td> </td>
{% endif %} {% endif %}
<td style="{{ style|raw }}"> <td style="{{ style|raw }}" class="hidden-xs">
<div class="pull-right"> <div class="pull-right">
<input id="list_{{ transaction.transaction_journal_id }}" value="{{ transaction.transaction_journal_id }}" <input id="list_{{ transaction.transaction_journal_id }}" value="{{ transaction.transaction_journal_id }}"
name="journals[{{ transaction.transaction_journal_id }}]" name="journals[{{ transaction.transaction_journal_id }}]"