Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756287AbdDMKJP (ORCPT ); Thu, 13 Apr 2017 06:09:15 -0400 Received: from ec2-52-27-115-49.us-west-2.compute.amazonaws.com ([52.27.115.49]:39587 "EHLO osg.samsung.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754615AbdDMKJL (ORCPT ); Thu, 13 Apr 2017 06:09:11 -0400 X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Cc: Markus Heiser , Mauro Carvalho Chehab , LKML , Greg Kroah-Hartman , Hans Verkuil , Mauro Carvalho Chehab Subject: [PATCH v2 01/11] doc-rst: customize RTD theme; literal-block Date: Thu, 13 Apr 2017 07:08:44 -0300 Message-Id: <8027b9f5ea9d5212cb30b2699bc2cf62873a1bf6.1492077070.git.mchehab@s-opensource.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 961 Lines: 31 From: Markus Heiser From: Markus Heiser Format the literal-block like other code-block elements, with 12px and a line-high of 1.5. Signed-off-by: Markus Heiser Signed-off-by: Mauro Carvalho Chehab --- Documentation/sphinx-static/theme_overrides.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Documentation/sphinx-static/theme_overrides.css b/Documentation/sphinx-static/theme_overrides.css index d5764a4de5a2..7033d4c05e42 100644 --- a/Documentation/sphinx-static/theme_overrides.css +++ b/Documentation/sphinx-static/theme_overrides.css @@ -69,4 +69,11 @@ .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal { color: inherit; } + + /* literal blocks (e.g. parsed-literal directive) */ + + pre.literal-block { + font-size: 12px; + line-height: 1.5; + } } -- 2.9.3