From 3137bca8621826a62a6c8c4986120b696d9444fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Blin?= <sebastien.blin@savoirfairelinux.com> Date: Thu, 24 Dec 2020 14:12:31 -0500 Subject: [PATCH] chatview: parametize hyperlink color for dark theme Change-Id: I2db8d01449b854ff84447147d93dd9d0312e0a08 GitLab: #452 --- src/web-chatview/chatview.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/web-chatview/chatview.css b/src/web-chatview/chatview.css index e699e39f..12a6c327 100644 --- a/src/web-chatview/chatview.css +++ b/src/web-chatview/chatview.css @@ -9,6 +9,7 @@ --jami-red: #dc2719; --jami-red-hover: #b02e2c; --text-color: black; + --hyperlink-color: var(--text-color); --timestamp-color: #333; --message-out-bg: #cfd8dc; --message-out-txt: black; @@ -342,7 +343,7 @@ input[placeholder], [placeholder], *[placeholder] { a:link { text-decoration: none; - color: #0e649b; + color: var(--hyperlink-color); transition: all 0.2s ease-in-out; border-bottom: dotted 1px; } -- GitLab