mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-01 19:47:11 +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;
|
||||
}
|
||||
|
||||
.markdown blockquote p {
|
||||
font-size:14px;
|
||||
}
|
||||
.markdown h1 {
|
||||
font-size:24px;
|
||||
}
|
||||
|
||||
.general-chart-error {
|
||||
height: 30px;
|
||||
background: url('/images/error.png') no-repeat center center;
|
||||
|
||||
@@ -89,7 +89,7 @@
|
||||
<table class="table">
|
||||
<tr>
|
||||
<td>{{ trans('list.notes') }}</td>
|
||||
<td>{{ bill.notes.first.text|markdown }}</td>
|
||||
<td class="markdown">{{ bill.notes.first.text|markdown }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
{% endif %}
|
||||
|
||||
@@ -117,7 +117,7 @@
|
||||
<i class="fa fa-fw fa-power-off "></i></a>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<td class="markdown">
|
||||
{% if rule.active %}
|
||||
{{ rule.title }}
|
||||
{% else %}
|
||||
|
||||
@@ -239,7 +239,7 @@
|
||||
{% if journal.notes.count == 1 %}
|
||||
<tr>
|
||||
<td>{{ trans('list.notes') }}</td>
|
||||
<td>{{ journal.notes.first.text|markdown }}</td>
|
||||
<td class="markdown">{{ journal.notes.first.text|markdown }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user