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

View File

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

View File

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

View File

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