Use button instead of <a> looks much better

This commit is contained in:
Federico Vera 2019-06-05 20:45:36 -03:00
parent c29d719c50
commit 08ee2eeb5c
No known key found for this signature in database
GPG Key ID: E69ECE2FCCDE9566
1 changed files with 6 additions and 2 deletions

View File

@ -237,7 +237,9 @@
{% if last_output_truncated != last_output %}
<dt class="col-md-3"></dt>
<dd class="col-md-9">
<a style="float: right;" data-toggle="modal" data-target="#modal_last_output">See complete...</a>
<button type="button" class="btn btn-link" style="float: right;" data-toggle="modal" data-target="#modal_last_output">
See complete...
</button>
</dd>
{% endif %}
</dl>
@ -249,7 +251,9 @@
{% if last_error_output_truncated != last_error_output %}
<dt class="col-md-3"></dt>
<dd class="col-md-9">
<a style="float: right;" data-toggle="modal" data-target="#modal_last_error">See complete...</a>
<button type="button" class="btn btn-link" style="float: right;" data-toggle="modal" data-target="#modal_last_error">
See complete...
</button>
</dd>
{% endif %}