From 0e0cbf56e06c40f33c7b1ae25ce9badbe772acec Mon Sep 17 00:00:00 2001 From: Stephanie Leary Date: Fri, 12 May 2023 15:47:26 +0000 Subject: [PATCH] LP2011056 Color contrast for links in tooltips Forces links in tooltips to inherit the parent text color. Signed-off-by: Stephanie Leary --- Open-ILS/src/eg2/src/styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Open-ILS/src/eg2/src/styles.css b/Open-ILS/src/eg2/src/styles.css index ca59afa619..78f0ce51e0 100644 --- a/Open-ILS/src/eg2/src/styles.css +++ b/Open-ILS/src/eg2/src/styles.css @@ -547,6 +547,11 @@ a { text-decoration: none; } +/* Fix tooltip link colors */ +.tooltip .tooltip-inner a { + color: inherit; +} + .input-group-text label, .input-group-text button { border: 0; -- 2.11.0