mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Fix #1132
This commit is contained in:
7
public/css/firefly.css
vendored
7
public/css/firefly.css
vendored
@@ -22,6 +22,13 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.markdown blockquote p {
|
||||||
|
font-size:14px;
|
||||||
|
}
|
||||||
|
.markdown h1 {
|
||||||
|
font-size:24px;
|
||||||
|
}
|
||||||
|
|
||||||
.general-chart-error {
|
.general-chart-error {
|
||||||
height: 30px;
|
height: 30px;
|
||||||
background: url('/images/error.png') no-repeat center center;
|
background: url('/images/error.png') no-repeat center center;
|
||||||
|
|||||||
@@ -89,7 +89,7 @@
|
|||||||
<table class="table">
|
<table class="table">
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ trans('list.notes') }}</td>
|
<td>{{ trans('list.notes') }}</td>
|
||||||
<td>{{ bill.notes.first.text|markdown }}</td>
|
<td class="markdown">{{ bill.notes.first.text|markdown }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -117,7 +117,7 @@
|
|||||||
<i class="fa fa-fw fa-power-off "></i></a>
|
<i class="fa fa-fw fa-power-off "></i></a>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td class="markdown">
|
||||||
{% if rule.active %}
|
{% if rule.active %}
|
||||||
{{ rule.title }}
|
{{ rule.title }}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|||||||
@@ -239,7 +239,7 @@
|
|||||||
{% if journal.notes.count == 1 %}
|
{% if journal.notes.count == 1 %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ trans('list.notes') }}</td>
|
<td>{{ trans('list.notes') }}</td>
|
||||||
<td>{{ journal.notes.first.text|markdown }}</td>
|
<td class="markdown">{{ journal.notes.first.text|markdown }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user