From 580d51140d179f2bf32d0bf3d4c59175ce1ea06c Mon Sep 17 00:00:00 2001 From: Mathias157 Date: Tue, 17 Sep 2024 11:54:35 +0200 Subject: [PATCH] I added an actual change in colour when you have visited a link, since it might be bad practice not to --- docs/css/css_options.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/css/css_options.css b/docs/css/css_options.css index eb48106..d111b7f 100644 --- a/docs/css/css_options.css +++ b/docs/css/css_options.css @@ -1,10 +1,10 @@ /* 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 */ @@ -12,7 +12,7 @@ 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; } \ No newline at end of file