diff --git a/docs/_static/style.css b/docs/_static/style.css index b2d973b..80e62f2 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -31,3 +31,15 @@ .wy-side-nav-search > a img.logo, .wy-side-nav-search .wy-dropdown > a img.logo { width: 100px !important; } + +.wy-nav-side { + background-color: #2c3e50; +} + +.wy-side-nav-search { + background-color: #2c3e50; +} + +.wy-menu-vertical p.caption { + color: #fff; +} diff --git a/docs/conf.py b/docs/conf.py index 145279a..79722a4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,7 +70,7 @@ # # The short X.Y version. with open("../VERSION", 'r') as f: - version = f.read().strip() + version = 'v' + f.read().strip() # The full version, including alpha/beta/rc tags. release = version diff --git a/docs/install.rst b/docs/install.rst index 36a2879..3e5bcf5 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -2,7 +2,9 @@ Installation ============= The CodeGrade filesystem has to be installed and both the ``cgfs`` and the ``cgapi-consumer`` helper program must be available from the user's ``$PATH`` -to successfully install and use the Vim editor plugin. +to successfully install and use the Vim editor plugin. This should be +automatically done when installing the CodeGrade Filesystem with the official +installer. Vim 8 and up -------------