diff --git a/doc/source/getting_started/index.rst b/doc/source/getting_started/index.rst index a1d1ddfc0..6f3d97215 100644 --- a/doc/source/getting_started/index.rst +++ b/doc/source/getting_started/index.rst @@ -28,7 +28,7 @@ Consider using the ``conf.py`` for this repository: .. literalinclude:: ../conf.py :language: python - + .. toctree:: :hidden: :maxdepth: 2 diff --git a/src/ansys_sphinx_theme/__init__.py b/src/ansys_sphinx_theme/__init__.py index 3fbcb8dd2..0997536ca 100644 --- a/src/ansys_sphinx_theme/__init__.py +++ b/src/ansys_sphinx_theme/__init__.py @@ -4,7 +4,7 @@ from ansys_sphinx_theme.latex import generate_404 # noqa: F401 -__version__ = "0.8.0" +__version__ = "0.8.1" # get location of this directory _this_path = os.path.dirname(os.path.realpath(__file__)) diff --git a/src/ansys_sphinx_theme/static/css/ansys_sphinx_theme.css b/src/ansys_sphinx_theme/static/css/ansys_sphinx_theme.css index a4cdf365d..65dc30a49 100644 --- a/src/ansys_sphinx_theme/static/css/ansys_sphinx_theme.css +++ b/src/ansys_sphinx_theme/static/css/ansys_sphinx_theme.css @@ -855,4 +855,14 @@ max-width: 220px; margin-left: auto; margin-right: auto; font-family: var(--pst-font-family-base); +} + +div.deprecated { + border-color: var(--pst-color-danger); + background-color: #dc354514; +} + +div.versionadded { + border-color: var(--pst-color-success); + background: #88ca881f; } \ No newline at end of file