Merge branch 'now_playing-doc-fixes' into develop
This commit is contained in:
commit
1a2e741337
|
@ -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;
|
||||||
|
}
|
|
@ -59,3 +59,12 @@ if not on_rtd: # only import and set the theme if we’re building docs locally
|
||||||
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
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',
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue