From patchwork Fri Jul 8 13:02:57 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Carvalho Chehab X-Patchwork-Id: 9220827 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 92BDC6044F for ; Fri, 8 Jul 2016 13:04:03 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 840072878E for ; Fri, 8 Jul 2016 13:04:03 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7885228792; Fri, 8 Jul 2016 13:04:03 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A116C2878E for ; Fri, 8 Jul 2016 13:04:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755130AbcGHNEA (ORCPT ); Fri, 8 Jul 2016 09:04:00 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:41275 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754855AbcGHND7 (ORCPT ); Fri, 8 Jul 2016 09:03:59 -0400 Received: from 177.43.148.138.dynamic.adsl.gvt.net.br ([177.43.148.138] helo=smtp.w2.samsung.com) by bombadil.infradead.org with esmtpsa (Exim 4.85_2 #1 (Red Hat Linux)) id 1bLVRl-0000BU-LA; Fri, 08 Jul 2016 13:03:57 +0000 Received: from mchehab by smtp.w2.samsung.com with local (Exim 4.87) (envelope-from ) id 1bLVRi-00089Y-6v; Fri, 08 Jul 2016 10:03:54 -0300 From: Mauro Carvalho Chehab To: Linux Media Mailing List Cc: corbet@lwn.net, markus.heiser@darmarIT.de, linux-doc@vger.kernel.org, Mauro Carvalho Chehab , Mauro Carvalho Chehab Subject: [PATCH 05/54] doc-rst: boilerplate HTML theme customization Date: Fri, 8 Jul 2016 10:02:57 -0300 Message-Id: X-Mailer: git-send-email 2.7.4 In-Reply-To: References: In-Reply-To: References: Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Markus Heiser Implements the minimal boilerplate for Sphinx HTML theme customization. Signed-off-by: Markus Heiser Signed-off-by: Mauro Carvalho Chehab --- Documentation/conf.py | 9 ++++++++- Documentation/sphinx-static/theme_overrides.css | 9 +++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 Documentation/sphinx-static/theme_overrides.css diff --git a/Documentation/conf.py b/Documentation/conf.py index 792b6338ef19..f35748b4bc26 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -176,7 +176,14 @@ except ImportError: # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -#html_static_path = ['_static'] + +html_static_path = ['sphinx-static'] + +html_context = { + 'css_files': [ + '_static/theme_overrides.css', + ], +} # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied diff --git a/Documentation/sphinx-static/theme_overrides.css b/Documentation/sphinx-static/theme_overrides.css new file mode 100644 index 000000000000..4d670dbf7ffa --- /dev/null +++ b/Documentation/sphinx-static/theme_overrides.css @@ -0,0 +1,9 @@ +/* -*- coding: utf-8; mode: css -*- + * + * Sphinx HTML theme customization + * + */ + +@media screen { + +}