From: Kevin Decherf Date: Sun, 20 Nov 2016 19:45:05 +0000 (+0100) Subject: Material: render blockquote in italic and strong in bold in article X-Git-Tag: 2.2.0~3^2~44^2~2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=819c8f5bd42e2b69228d8adc9303970cae768167;hp=fdaa044314d6bd05ac3ff3a6cdad88c852702b2e;p=github%2Fwallabag%2Fwallabag.git Material: render blockquote in italic and strong in bold in article Signed-off-by: Kevin Decherf --- diff --git a/app/Resources/static/themes/material/css/main.css b/app/Resources/static/themes/material/css/main.css index ff3a9891..a8172b7e 100755 --- a/app/Resources/static/themes/material/css/main.css +++ b/app/Resources/static/themes/material/css/main.css @@ -673,6 +673,14 @@ a.original { list-style-type: disc; } +#article article blockquote { + font-style: italic; +} + +#article article strong { + font-weight: bold; +} + #article article pre { box-sizing: border-box; margin: 0 0 1.75em;