diff --git a/sphinx/themes/agogo/static/agogo.css_t b/sphinx/themes/agogo/static/agogo.css_t index a2386942591..e41dfb8f0a5 100644 --- a/sphinx/themes/agogo/static/agogo.css_t +++ b/sphinx/themes/agogo/static/agogo.css_t @@ -41,6 +41,10 @@ a { color: {{ theme_linkcolor }}; } +a:visited { + color: #551a8b; +} + div.bodywrapper a, div.footer a { text-decoration: underline; } diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index d816abc3f1d..53f5eb4ae19 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -237,6 +237,10 @@ a.headerlink { visibility: hidden; } +a:visited { + color: #551A8B; +} + h1:hover > a.headerlink, h2:hover > a.headerlink, h3:hover > a.headerlink, diff --git a/sphinx/themes/bizstyle/static/bizstyle.css_t b/sphinx/themes/bizstyle/static/bizstyle.css_t index 1f012c4c208..3cf78325cbe 100644 --- a/sphinx/themes/bizstyle/static/bizstyle.css_t +++ b/sphinx/themes/bizstyle/static/bizstyle.css_t @@ -181,6 +181,10 @@ a:hover { text-decoration: underline; } +a:visited { + color: #551a8b; +} + div.body a { text-decoration: underline; } diff --git a/sphinx/themes/classic/theme.conf b/sphinx/themes/classic/theme.conf index cd16f4b47d5..5963d04d946 100644 --- a/sphinx/themes/classic/theme.conf +++ b/sphinx/themes/classic/theme.conf @@ -24,7 +24,7 @@ headbgcolor = #f2f2f2 headtextcolor = #20435c headlinkcolor = #c60f0f linkcolor = #355f7c -visitedlinkcolor = #355f7c +visitedlinkcolor = #551a8b codebgcolor = unset codetextcolor = unset diff --git a/sphinx/themes/epub/static/epub.css_t b/sphinx/themes/epub/static/epub.css_t index 15938cdc54e..1afb150364a 100644 --- a/sphinx/themes/epub/static/epub.css_t +++ b/sphinx/themes/epub/static/epub.css_t @@ -26,11 +26,16 @@ div.clearer { clear: both; } -a:link, a:visited { +a:link { color: #3333ff; text-decoration: underline; } +a:visited { + color: #551a8b; + text-decoration: underline; +} + img { border: 0; max-width: 100%; diff --git a/sphinx/themes/haiku/theme.conf b/sphinx/themes/haiku/theme.conf index 4caff3c6f13..77dd7c78ba7 100644 --- a/sphinx/themes/haiku/theme.conf +++ b/sphinx/themes/haiku/theme.conf @@ -10,5 +10,5 @@ body_max_width = 70em textcolor = #333333 headingcolor = #0c3762 linkcolor = #dc3c01 -visitedlinkcolor = #892601 +visitedlinkcolor = #551a8b hoverlinkcolor = #ff4500 diff --git a/sphinx/themes/nature/static/nature.css_t b/sphinx/themes/nature/static/nature.css_t index a2f3710e168..fe95c353284 100644 --- a/sphinx/themes/nature/static/nature.css_t +++ b/sphinx/themes/nature/static/nature.css_t @@ -142,6 +142,10 @@ a:hover { text-decoration: underline; } +a:visited { + color: #551A8B; +} + div.body h1, div.body h2, div.body h3, diff --git a/sphinx/themes/nonav/static/nonav.css_t b/sphinx/themes/nonav/static/nonav.css_t index 71e3ffc08c3..b4d26ccb24b 100644 --- a/sphinx/themes/nonav/static/nonav.css_t +++ b/sphinx/themes/nonav/static/nonav.css_t @@ -15,11 +15,16 @@ div.clearer { clear: both; } -a:link, a:visited { +a:link { color: #3333ff; text-decoration: underline; } +a:visited { + color: #551a8b; + text-decoration: underline; +} + img { border: 0; max-width: 100%; diff --git a/sphinx/themes/pyramid/static/pyramid.css_t b/sphinx/themes/pyramid/static/pyramid.css_t index 4de53279805..560093cc41f 100644 --- a/sphinx/themes/pyramid/static/pyramid.css_t +++ b/sphinx/themes/pyramid/static/pyramid.css_t @@ -181,6 +181,10 @@ a:hover, a:hover .pre { text-decoration: underline; } +a:visited { + color: #551a8b; +} + div.body h1, div.body h2, div.body h3, diff --git a/sphinx/themes/scrolls/static/scrolls.css_t b/sphinx/themes/scrolls/static/scrolls.css_t index c8b947d40ac..ae6eb0a58b0 100644 --- a/sphinx/themes/scrolls/static/scrolls.css_t +++ b/sphinx/themes/scrolls/static/scrolls.css_t @@ -187,6 +187,10 @@ a:hover { color: {{ theme_visitedlinkcolor }}; } +a:visited { + color: {{ theme_visitedlinkcolor }}; +} + pre { background-image: url(metal.png); border-top: 1px solid #ccc; diff --git a/sphinx/themes/scrolls/theme.conf b/sphinx/themes/scrolls/theme.conf index 3956063a9e9..7e83de14a6c 100644 --- a/sphinx/themes/scrolls/theme.conf +++ b/sphinx/themes/scrolls/theme.conf @@ -9,5 +9,5 @@ body_max_width = 680 headerbordercolor = #1752b4 subheadlinecolor = #0d306b linkcolor = #1752b4 -visitedlinkcolor = #444 +visitedlinkcolor = #551a8b admonitioncolor = #28437f diff --git a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t index 36d05907e17..bf4d25423d4 100644 --- a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t +++ b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t @@ -151,6 +151,10 @@ a:hover { color: #2491CF; } +a:visited { + color: #551A8B; +} + div.body a { text-decoration: underline; }