This commit is contained in:
James Cole
2018-01-12 20:37:39 +01:00
parent 79d6055a78
commit e34e43173c
4 changed files with 10 additions and 3 deletions

View File

@@ -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;

View File

@@ -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 %}

View File

@@ -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 %}

View File

@@ -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 %}