From 56bc4ccdca5a29c6759a86d0ef4b88ad5882033d Mon Sep 17 00:00:00 2001 From: Gareth Barnard <1058419+gjb2048@users.noreply.github.com> Date: Sun, 11 Feb 2024 13:23:53 +0000 Subject: [PATCH] Fix 'Alert warning secondary buttons'. --- Changes.md | 1 + scss/theme/_alerts.scss | 3 +++ scss/theme/theme.scss | 1 + 3 files changed, 5 insertions(+) create mode 100644 scss/theme/_alerts.scss diff --git a/Changes.md b/Changes.md index 958a4857..a44c2591 100644 --- a/Changes.md +++ b/Changes.md @@ -5,6 +5,7 @@ Version 402.1.4 - TBR -------------------------- 1. Added tooltip to show / hide block. 2. Fix 'Site Logo needs Alt Text for Accessibility' - #30. +3. Fix 'Alert warning secondary buttons'. Version 402.1.3 - 15/10/23 -------------------------- diff --git a/scss/theme/_alerts.scss b/scss/theme/_alerts.scss new file mode 100644 index 00000000..c34fde6a --- /dev/null +++ b/scss/theme/_alerts.scss @@ -0,0 +1,3 @@ +.alert-warning a.btn-secondary { + color: color-yiq($secondary); +} diff --git a/scss/theme/theme.scss b/scss/theme/theme.scss index 489aa444..6b35e778 100644 --- a/scss/theme/theme.scss +++ b/scss/theme/theme.scss @@ -1,6 +1,7 @@ // Override. @import "theme/override"; // Theme changes. +@import "theme/alerts"; @import "theme/atto"; @import "theme/bootstrap_navbar"; @import "theme/bootstrap_toasts";