From 6a7d878e540ad9bab98433b4ff8e28a77e4f1bdf Mon Sep 17 00:00:00 2001 From: Oyasuminasai <61616918+nfnfgo@users.noreply.github.com> Date: Sat, 6 Jul 2024 12:27:23 +0800 Subject: [PATCH] fix: Fix link color issue in self-sent message. --- src/style/markdown.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/style/markdown.css b/src/style/markdown.css index 5108106..b7bcded 100644 --- a/src/style/markdown.css +++ b/src/style/markdown.css @@ -71,6 +71,12 @@ blockquote { text-decoration: underline; } + /* If the link is inside self-sent message, use white text */ + /* Notice, this solution could work with LiteLoader theme (tested on Windows)*/ + div.container--self a.markdown_it_link { + color: white; + } + a.markdown_it_link:hover { color: #30a9de; }