From 12e417d311e4a45614a75e8202e1558bd876eb06 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Fri, 6 Sep 2019 18:14:51 -0500 Subject: [PATCH] Fix detail view link color. Issue #965 --- iOS/Resources/styleSheet.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iOS/Resources/styleSheet.css b/iOS/Resources/styleSheet.css index 9c1a7fcf1..b8720ecef 100644 --- a/iOS/Resources/styleSheet.css +++ b/iOS/Resources/styleSheet.css @@ -34,6 +34,7 @@ a:hover { :root { color-scheme: light dark; + --link-color: hsla(215, 99%, 43%, 1); --header-table-border-color: rgba(0, 0, 0, 0.1); --header-color: rgba(0, 0, 0, 0.3); --header-link-color: rgba(0, 0, 0, 0.3); @@ -44,6 +45,7 @@ a:hover { @media(prefers-color-scheme: dark) { :root { + --link-color: #4490e2; --header-table-border-color: rgba(255, 255, 255, 0.1); --header-color: #d2d2d2; --header-link-color: #4490e2;