From e17a68f61c1bdacd87d7d3d8bf3e1346617fc86a Mon Sep 17 00:00:00 2001 From: "PRINTABLE\\dgagliardi" Date: Wed, 5 Oct 2022 11:40:30 -0500 Subject: [PATCH] *Updates hyperlink style to make links more visible to end users --- mRemoteNGDocumentation/_static/css/custom.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mRemoteNGDocumentation/_static/css/custom.css b/mRemoteNGDocumentation/_static/css/custom.css index 744bda4c..80a0db14 100644 --- a/mRemoteNGDocumentation/_static/css/custom.css +++ b/mRemoteNGDocumentation/_static/css/custom.css @@ -1,6 +1,7 @@ body { --themecolor: #4F8AFF; + --linkcolor: #343131; color: var(--themecolor); } @@ -26,21 +27,22 @@ body { } a:link { - color: var(--themecolor); + color: var(--linkcolor); } a:visited { - color: var(--themecolor); + color: var(--linkcolor); } a:hover { - color: var(--themecolor); + color: var(--linkcolor); } a:active { - color: var(--themecolor); + color: var(--linkcolor); } a { - color: var(--themecolor); + color: var(--linkcolor); + text-decoration: underline; }