From 67a8c4809f9eeb27854f49cd80c8e9569810e2bb Mon Sep 17 00:00:00 2001 From: MewenLeHo Date: Fri, 25 Nov 2022 18:31:49 +0100 Subject: [PATCH 1/3] Convert current step to plain text --- site/content/docs/5.2/components/stepped-process.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/docs/5.2/components/stepped-process.md b/site/content/docs/5.2/components/stepped-process.md index 4dee9429bb..02cd37c5b8 100644 --- a/site/content/docs/5.2/components/stepped-process.md +++ b/site/content/docs/5.2/components/stepped-process.md @@ -26,7 +26,7 @@ Add `.active` to a `.stepped-process-item` to indicate the current step, alongsi Sign in
  • - Review + Review
  • Delivery @@ -55,7 +55,7 @@ Add `.stepped-process-dark` to the `.stepped-process` for a dark variant. Sign in
  • - Review + Review
  • Delivery From b916dfe75e33d72c9adfc9c2d1c6ef587b1503f0 Mon Sep 17 00:00:00 2001 From: MewenLeHo Date: Mon, 28 Nov 2022 10:34:15 +0100 Subject: [PATCH 2/3] Fix underline when hover current step --- scss/_stepped-process.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_stepped-process.scss b/scss/_stepped-process.scss index af6e6e1ea6..e3e0387bf3 100644 --- a/scss/_stepped-process.scss +++ b/scss/_stepped-process.scss @@ -109,7 +109,7 @@ color: var(--#{$prefix}stepped-process-link-color); } - &:hover { + &[href]:hover { text-decoration: if($link-hover-decoration == underline, null, underline); } From 193842aec7969974d379ed0d1932732fe5650118 Mon Sep 17 00:00:00 2001 From: MewenLeHo Date: Wed, 30 Nov 2022 13:35:42 +0100 Subject: [PATCH 3/3] Add migration guide --- site/content/docs/5.2/migration.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/site/content/docs/5.2/migration.md b/site/content/docs/5.2/migration.md index 955dbe3517..83b7145de0 100644 --- a/site/content/docs/5.2/migration.md +++ b/site/content/docs/5.2/migration.md @@ -17,6 +17,15 @@ Boosted v5.2.3 has landed with a handful of urgent bug fixes from Bootstrap and If you need more details about the changes, please refer to the [v5.2.3 release](https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/releases/tag/v5.2.3). +### Components + +- **Stepped Process** + - Current step has been slightly changed for accessibility purpose; the link to this step has been converted to plain text. Please reflect this modification into your websites. + ```diff + - Review + + Review + ``` + ## v5.2.2