Skip to content

Commit

Permalink
Fixed dark theme (#337)
Browse files Browse the repository at this point in the history
Fixed dark theme

Reviewed-by: Tino Schr
  • Loading branch information
SebastianGode authored May 31, 2024
1 parent 6f0e5bf commit d8c6cdd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
'sphinx_antsibull_ext'
]

antsibull_ext_color_scheme = 'default-autodark'

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down
4 changes: 2 additions & 2 deletions roles/vpc_peering/tasks/main.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- include: "provision.yaml"
- include_tasks: "provision.yaml"
when: "state != 'absent'"

- include: "destroy.yaml"
- include_tasks: "destroy.yaml"
when: "state == 'absent'"
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ commands = stestr run {posargs}
deps =
-r{toxinidir}/doc/requirements.txt
# requirements below are only required for local execution
ansible-base # ansible is required by antsibull
antsibull>=0.33.0 # antsibull in zuul is installed by the job
ansible-core # ansible is required by antsibull
antsibull-docs>=2.8.0 # antsibull in zuul is installed by the job
sphinx>=4.0.0 # Sphinx in zuul is installed by the job
setenv =
ANSIBLE_COLLECTIONS_PATH={toxinidir}/../../../
Expand All @@ -32,8 +32,8 @@ allowlist_externals =
cp
commands =
# WARNING OF A DIRTY HACK
mkdir -m 700 -p tmp
antsibull-docs collection --use-current --squash-hierarchy --dest-dir tmp opentelekomcloud.cloud -vv
mkdir -m 700 -p tmp/source
antsibull-docs collection --use-current --squash-hierarchy --dest-dir tmp/source opentelekomcloud.cloud
# copy static local content on top of generated
cp -av doc/source/ tmp
# copy resulting content back to Sphinx location
Expand Down

0 comments on commit d8c6cdd

Please sign in to comment.