Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitrij <kvarkas@gmail.com>2022-10-05 21:40:07 +0300
committerGitHub <noreply@github.com>2022-10-05 21:40:07 +0300
commit944ad1f7694b0196bbe918a2c3e67905b255266f (patch)
tree8f72cf958a58c6fb84ceb46af290ab110393b68c
parent0b8196be6842ef6d4ac91bd536449df6424c8916 (diff)
parente17a68f61c1bdacd87d7d3d8bf3e1346617fc86a (diff)
Merge pull request #2295 from CrunchyBlue/v1.77.3-dev
*Updates hyperlink style to make links more visible to end users
-rw-r--r--mRemoteNGDocumentation/_static/css/custom.css12
1 files 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;
}