doc: Fix docutils table column width

This commit is contained in:
Wojciech Zygmunt Porczyk 2015-01-12 12:33:18 +01:00 committed by Wojtek Porczyk
parent 118edb6ac4
commit 6df316378b
2 changed files with 13 additions and 0 deletions

9
doc/_static/qubes.css vendored Normal file
View File

@ -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
*/

4
doc/_templates/layout.html vendored Normal file
View File

@ -0,0 +1,4 @@
{% extends '!layout.html' %}
{% set css_files = css_files + ['_static/qubes.css'] %}
{# vim: ts=4 sw=4 et #}