Skip to content

Commit

Permalink
Merge 0d7b97f into c7b8a55
Browse files Browse the repository at this point in the history
  • Loading branch information
LilSpazJoekp committed Jun 11, 2022
2 parents c7b8a55 + 0d7b97f commit 5314767
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 17 deletions.
Binary file removed docs/_static/CodeUrl.png
Binary file not shown.
Binary file removed docs/_static/CreateApp.png
Binary file not shown.
24 changes: 15 additions & 9 deletions docs/_static/theme_override.css
Expand Up @@ -4,15 +4,21 @@ https://rackerlabs.github.io/docs-rackspace/tools/rtd-tables.html */
/* override table width restrictions */
@media screen and (min-width: 767px) {

.wy-table-responsive table td {
/* !important prevents the common CSS stylesheets from overriding
this as on RTD they are loaded after this stylesheet */
white-space: normal !important;
}
.wy-table-responsive table td {
/* !important prevents the common CSS stylesheets from overriding
this as on RTD they are loaded after this stylesheet */
white-space: normal !important;
}

.wy-table-responsive {
overflow: visible !important;
}
.wy-table-responsive {
overflow: visible !important;
}
}

table.center-table-items, table.center-table-items th { text-align: center; }
table.center-table-items, table.center-table-items th {
text-align: center;
}

html[data-theme='dark'] .btn-neutral {
color: #c1c1c1 !important;
}
9 changes: 7 additions & 2 deletions docs/conf.py
Expand Up @@ -10,12 +10,17 @@

copyright = datetime.today().strftime("%Y, Bryce Boe")
exclude_patterns = ["_build"]
extensions = ["sphinx.ext.autodoc", "sphinx.ext.intersphinx", "sphinx_rtd_theme"]
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx_rtd_dark_mode",
"sphinx_rtd_theme",
]
html_static_path = ["_static"]
html_theme = "sphinx_rtd_theme"
html_theme_options = {"collapse_navigation": True}
htmlhelp_basename = "PRAW"
intersphinx_mapping = {"python": ("https://docs.python.org", None)}
intersphinx_mapping = {"python": ("https://docs.python.org/3", None)}
master_doc = "index"
nitpick_ignore = [
("py:class", "IO"),
Expand Down
9 changes: 3 additions & 6 deletions setup.py
Expand Up @@ -16,19 +16,16 @@
extras = {
"ci": ["coveralls"],
"dev": ["packaging"],
"lint": [
"pre-commit",
"sphinx",
"sphinx_rtd_theme",
],
"readthedocs": ["sphinx", "sphinx_rtd_theme"],
"lint": ["pre-commit"],
"readthedocs": ["sphinx", "sphinx-rtd-dark-mode", "sphinx_rtd_theme"],
"test": [
"betamax >=0.8, <0.9",
"betamax-matchers >=0.3.0, <0.5",
"pytest >=2.7.3",
"requests >=2.20.1, <3",
],
}
extras["lint"] += extras["readthedocs"]
extras["dev"] += extras["lint"] + extras["test"]

setup(
Expand Down

0 comments on commit 5314767

Please sign in to comment.