From 4856d49f4a0b5ae6675de59f0df12b41294fbff0 Mon Sep 17 00:00:00 2001 From: Andrew Hunt Date: Thu, 7 May 2020 18:25:52 -0400 Subject: [PATCH] Chevrons in civimail steps replaced --- ang/crmUi.js | 6 +++--- ang/crmUi/wizard.html | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ang/crmUi.js b/ang/crmUi.js index 0b09c60de7..c5b6c426d2 100644 --- a/ang/crmUi.js +++ b/ang/crmUi.js @@ -824,9 +824,9 @@ return steps[selectedIndex] && steps[selectedIndex].isStepValid(); }; this.iconFor = function(index) { - if (index < this.$index()) return '√'; - if (index === this.$index()) return '»'; - return ' '; + if (index < this.$index()) return 'crm-i fa-check'; + if (index === this.$index()) return 'crm-i fa-angle-double-right'; + return ''; }; this.isSelectable = function(step) { if (step.selected) return false; diff --git a/ang/crmUi/wizard.html b/ang/crmUi/wizard.html index bb55c89b1d..2539f38336 100644 --- a/ang/crmUi/wizard.html +++ b/ang/crmUi/wizard.html @@ -1,7 +1,7 @@