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:
authorPRINTABLE\dgagliardi <dgagliardi@marcom.com>2022-10-05 19:40:30 +0300
committerPRINTABLE\dgagliardi <dgagliardi@marcom.com>2022-10-05 19:40:30 +0300
commite17a68f61c1bdacd87d7d3d8bf3e1346617fc86a (patch)
tree8f72cf958a58c6fb84ceb46af290ab110393b68c
parent0b8196be6842ef6d4ac91bd536449df6424c8916 (diff)
*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;
}