Skip to content

Commit

Permalink
I added an actual change in colour when you have visited a link, sinc…
Browse files Browse the repository at this point in the history
…e it might be bad practice not to
  • Loading branch information
Mathias157 committed Sep 17, 2024
1 parent 9778c1d commit 580d511
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/css/css_options.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/* Changing the ugly purple visited colour to remain blue or white for all links */
/* Cross references remain blue */
/* Cross references turns grayblue */
a[class="reference internal"]:visited {
color: #6d91a8;
color: #6a8392;
}
a[class="reference external"]:visited {
color: #2980B9;
color: #6a8392;
}

/* Toctree remains white */
div[class="wy-side-scroll"] li[class='toctree-l1'] a:visited {
color: white;
}

/* Home icon remains blue */
/* Home icon turns grayblue */
ul[class="wy-breadcrumbs"] a:visited {
color: #2980B9;
color: #6a8392;
}

0 comments on commit 580d511

Please sign in to comment.