From 9469fb216506911784e77f0b012ba111d949a2a4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 6 Jul 2017 08:42:51 +0530 Subject: [PATCH] Fix #1702566 [https://manual.calibre-ebook.com/ justified](https://bugs.launchpad.net/calibre/+bug/1702566) --- manual/resources/custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manual/resources/custom.css b/manual/resources/custom.css index f9c2c1f738..e05f1bd633 100644 --- a/manual/resources/custom.css +++ b/manual/resources/custom.css @@ -18,6 +18,10 @@ div.sphinxsidebar { overflow-y: auto; max-height: calc(100vh - 25px) } } +div.body p, div.body dd, div.body li, div.body blockquote { + text-align: justify; +} + .float-left-img { float: left; margin-right: 1em; margin-bottom: 1em } .float-right-img { float: right; margin-left: 1em; margin-bottom: 1em }