diff --git a/docs/source/_static/custom.css b/docs/source/_static/custom.css index 7c175da75..c52e1f4fc 100644 --- a/docs/source/_static/custom.css +++ b/docs/source/_static/custom.css @@ -19,7 +19,11 @@ .wy-nav-side .wy-menu-vertical a:hover { color: #fff !important; } - +/* Sidebar item background color on hover */ +.wy-nav-side .wy-menu-vertical li.toctree-l1.current>a:hover, +.wy-nav-side .wy-menu-vertical li.toctree-l1>a:hover { + background-color: #333333 !important; /* Dark gray background */ +} /* Logo styling. */ .wy-side-nav-search .wy-nav-top img { padding: 15px; diff --git a/docs/source/conf.py b/docs/source/conf.py index 4521537d7..7aea426bd 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -180,7 +180,7 @@ html_logo = "_static/ScribeDataLogo.png" html_theme_options = { "logo_only": True, - "display_version": False, + "display_version": True, } # Importing custom css for theme customization.