Expand various views.

This commit is contained in:
James Cole 2018-03-10 07:17:23 +01:00
parent 648a6dca42
commit be97dd1c57
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
3 changed files with 15 additions and 6 deletions

View File

@ -22,11 +22,16 @@
cursor: pointer;
}
.markdown blockquote p {
font-size:14px;
.info-box-number {
line-height: 1.4;
}
.markdown blockquote p {
font-size: 14px;
}
.markdown h1 {
font-size:24px;
font-size: 24px;
}
.general-chart-error {

View File

@ -29,6 +29,9 @@ Debug information generated at {{ now }} for Firefly III version **{{ FF_VERSION
| Host | {{ phpOs }} |
| Interface | {{ interface }} |
| UserID | {{ Auth.user.id }} |
{% for code,result in localeAttempts %}
| Attempt at "{{ code }}" | {{ result }} |
{% endfor %}
| DB drivers | {{ drivers }} |
| Current driver | {{ currentDriver }} |
| Using Sandstorm? | {% if SANDSTORM == true %}yes{% else %}no{% endif %} |

View File

@ -7,13 +7,14 @@
<div class="info-box-content">
<span class="info-box-text">{{ 'balance'|_ }}</span>
<span class="info-box-number" id="box-balance-total"></span>
<span class="info-box-number" id="box-balance-sums"></span>
<div class="progress">
<div class="progress" id="box-balance-progress">
<div class="progress-bar" style="width: 0%"></div>
</div>
<span class="progress-description">
<span title="{{ 'expenses'|_ }}" id="box-balance-out"></span> / <span title="{{ 'income'|_ }}" id="box-balance-in"></span>
<span id="box-balance-list" ></span>
<!--<span title="{{ 'expenses'|_ }}" id="box-balance-out"></span> / <span title="{{ 'income'|_ }}" id="box-balance-in"></span>-->
</span>
</div>
</div>