Merge branch 'now_playing-doc-fixes' into develop

This commit is contained in:
ZyX 2015-01-09 16:54:03 +03:00
commit 1a2e741337
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,6 @@
.wy-table-responsive > table > tbody > tr > td {
white-space: unset;
}
.wy-table-responsive > table > tbody > tr > td:first-child {
vertical-align: top;
}

View File

@ -59,3 +59,12 @@ if not on_rtd: # only import and set the theme if were building docs locally
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
except ImportError:
pass
if on_rtd or html_theme == 'sphinx_rtd_theme':
html_context = {
'css_files': [
'https://media.readthedocs.org/css/sphinx_rtd_theme.css',
'https://media.readthedocs.org/css/readthedocs-doc-embed.css',
'_static/css/theme_overrides.css',
],
}