diff --git a/djangoproject/scss/_pygments.scss b/djangoproject/scss/_pygments.scss index da4a5cc6a2..b3a2decf9a 100644 --- a/djangoproject/scss/_pygments.scss +++ b/djangoproject/scss/_pygments.scss @@ -42,8 +42,8 @@ html[data-theme="light"], // For Django 2.0 docs and older. .snippet-filename { - background: var(--secondary-accent); - color: var(--code-fg); + // background: var(--secondary-accent); + // color: var(--code-fg); @include monospace; font-size: 1em; padding: 5px 20px; diff --git a/djangoproject/templates/releases/download.html b/djangoproject/templates/releases/download.html index 3670508e2d..8fd615fcd6 100644 --- a/djangoproject/templates/releases/download.html +++ b/djangoproject/templates/releases/download.html @@ -31,9 +31,17 @@

Option {% cycle '1' '2' '3' as options %}: Get the latest official versionpip:

Linux / macOS:

-
python -m pip install Django=={{ current.version }}
+ + +
+
python -m pip install Django=={{ current.version }}
+
+ +

Windows:

-
py -m pip install Django=={{ current.version }}
+
+
py -m pip install Django=={{ current.version }}
+
{% if preview %} {% with preview.version|slice:":3" as major_version %} @@ -46,13 +54,18 @@

Option {% cycle options %}: Get the {{ preview.get_status_display }} for {{ {{ major_version }} release. Please read the {% release_notes preview.version show_version=True %} before using this package.

Install the {{ preview.get_status_display }} with pip:

-
pip install --pre django
+
+
pip install --pre django
+
{% endwith %} {% endif %}

Option {% cycle options %}: Get the latest development version

The latest and greatest Django version is the one that’s in our Git repository (our revision-control system). This is only for experienced users who want to try incoming changes and help identify bugs before an official release. Get it using this shell command, which requires Git:

-

git clone https://github.com/django/django.git

+
+

git clone https://github.com/django/django.git

+
+

You can also download a gzipped tarball of the development version. This archive is updated every time we commit code.