summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchylex <contact@chylex.com>2022-06-06 18:16:12 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2023-04-26 15:41:10 +0200
commit7338574821b8fe930301e73b41d3663cd16ffcf6 (patch)
tree3dc574bcc4463f5c8e7c9aa603f32e3afa129e1c
parent1fc1e51c6df3ce52e6e9cccfbed1d1d605a145c2 (diff)
Improve visibility of links in dark theme (#2215)
Signed-off-by: chylex <contact@chylex.com>
-rw-r--r--CHANGELOG.md2
-rw-r--r--css/content.css5
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2a17bb4db..678ffa15a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,7 @@ The format is mostly based on [Keep a Changelog](https://keepachangelog.com/en/1
# Unreleased
## [21.x.x]
### Changed
-
+- Improve visibility of links in dark theme (#2215)
### Fixed
diff --git a/css/content.css b/css/content.css
index 37abf5fe5..fe41577ba 100644
--- a/css/content.css
+++ b/css/content.css
@@ -714,6 +714,11 @@
text-decoration: underline;
}
+body.theme--dark #app-content .body a, /* NC 24 */
+[data-theme-dark] #app-content .body a { /* NC 25 */
+ color: #9cc7ff;
+}
+
#app-content .body ul {
margin: 7px 0;
padding-left: 14px;