From 6df316378b9df50c474a75a5441bec3f6e472758 Mon Sep 17 00:00:00 2001 From: Wojciech Zygmunt Porczyk Date: Mon, 12 Jan 2015 12:33:18 +0100 Subject: [PATCH] doc: Fix docutils table column width --- doc/_static/qubes.css | 9 +++++++++ doc/_templates/layout.html | 4 ++++ 2 files changed, 13 insertions(+) create mode 100644 doc/_static/qubes.css create mode 100644 doc/_templates/layout.html diff --git a/doc/_static/qubes.css b/doc/_static/qubes.css new file mode 100644 index 00000000..3e0078d5 --- /dev/null +++ b/doc/_static/qubes.css @@ -0,0 +1,9 @@ +/* http://stackoverflow.com/questions/21027105/how-can-i-have-sphinx-tables-fit-to-width */ + +table.docutils col { + width: auto; +} + +/* +vim: ts=4 sw=4 et +*/ diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html new file mode 100644 index 00000000..efbcf4b7 --- /dev/null +++ b/doc/_templates/layout.html @@ -0,0 +1,4 @@ +{% extends '!layout.html' %} +{% set css_files = css_files + ['_static/qubes.css'] %} + +{# vim: ts=4 sw=4 et #}