From e34e43173c75961a501ff5f8dd7c79a84ece0167 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 12 Jan 2018 20:37:39 +0100 Subject: [PATCH] Fix #1132 --- public/css/firefly.css | 7 +++++++ resources/views/bills/show.twig | 2 +- resources/views/rules/index.twig | 2 +- resources/views/transactions/show.twig | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/public/css/firefly.css b/public/css/firefly.css index 3f783c50c2..5c3b249e0a 100644 --- a/public/css/firefly.css +++ b/public/css/firefly.css @@ -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; diff --git a/resources/views/bills/show.twig b/resources/views/bills/show.twig index afde0b88fe..1742fd3a6c 100644 --- a/resources/views/bills/show.twig +++ b/resources/views/bills/show.twig @@ -89,7 +89,7 @@ - +
{{ trans('list.notes') }}{{ bill.notes.first.text|markdown }}{{ bill.notes.first.text|markdown }}
{% endif %} diff --git a/resources/views/rules/index.twig b/resources/views/rules/index.twig index 58a749477f..bb3bf7decb 100644 --- a/resources/views/rules/index.twig +++ b/resources/views/rules/index.twig @@ -117,7 +117,7 @@ - + {% if rule.active %} {{ rule.title }} {% else %} diff --git a/resources/views/transactions/show.twig b/resources/views/transactions/show.twig index 62b6fa49e9..2f841422c6 100644 --- a/resources/views/transactions/show.twig +++ b/resources/views/transactions/show.twig @@ -239,7 +239,7 @@ {% if journal.notes.count == 1 %} {{ trans('list.notes') }} - {{ journal.notes.first.text|markdown }} + {{ journal.notes.first.text|markdown }} {% endif %}