From b7d051f6518af8276b20553b0e28ef03e5f6b6e5 Mon Sep 17 00:00:00 2001 From: Zac Turner Date: Thu, 26 Sep 2024 16:29:57 +1000 Subject: [PATCH] ON-43700 # Updated tooltip links to be a readable colour. --- CHANGELOG.md | 1 + src/styles/renderer.scss | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b68d1f4..d0e5ea84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Tooltip `a` tags to be white in colour, and slightly grey when already visited - Prohibited user input directly through text field on the Date element ## [6.6.0] - 2024-09-25 diff --git a/src/styles/renderer.scss b/src/styles/renderer.scss index 490c3b3d..e5a9eeda 100644 --- a/src/styles/renderer.scss +++ b/src/styles/renderer.scss @@ -24,6 +24,14 @@ .ob-label__hint { margin-left: $size-8; } +.ob-hint-tooltip { + a { + color: rgba(255, 255, 255, 1); + } + a:visited { + color: rgba(255, 255, 255, 0.6); + } +} .ob-form-container { position: relative;