From ad7576d27cb45b76ccb8b0b37ce33e14b0545c61 Mon Sep 17 00:00:00 2001 From: Laura_Escamilla Date: Fri, 29 Aug 2025 15:04:19 +0000 Subject: [PATCH] Bug 39662: Changed X icon to a circle-x MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To test: 1. load http://localhost:8080/cgi-bin/koha/opac-memberentry.pl 2. Notice that next to the date of birth calendar there is a red X. To some users it looks like an error message. 3. Apply the patch. Do a yarn build and restart_all. Then clear your local browser cache if necessary. 4. Retry step 1. 5. Notice that the X next to the date of birth calendar is now a circle x icon. The color has also been changed to a grey. You can further test this using a WCAG contrast checker if you choose. 6. Make sure that you can add and clear dates using the new icon. 7. Sign off — have an amazing day! :D Signed-off-by: noah --- koha-tmpl/opac-tmpl/bootstrap/en/includes/calendar.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/calendar.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/calendar.inc index 240fa9953c..97e0105af3 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/calendar.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/calendar.inc @@ -95,7 +95,7 @@ e.preventDefault(); instance.clear(); }) - .addClass("fa fa-fw fa-times") + .addClass("fa fa-fw fa-times-circle") .attr("aria-hidden", false) .attr("aria-label", _("Clear date")) ) -- 2.43.0