From cd59b745fce445984a5271ac3a81daa7a5a6e100 Mon Sep 17 00:00:00 2001 From: Andy Smith Date: Mon, 27 Oct 2025 15:27:24 -0500 Subject: [PATCH] Ensure check icons are targeted properly --- app/assets/stylesheets/popup.css | 2 +- app/helpers/filters_helper.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/popup.css b/app/assets/stylesheets/popup.css index b3b8172be..94c6b9d60 100644 --- a/app/assets/stylesheets/popup.css +++ b/app/assets/stylesheets/popup.css @@ -138,7 +138,7 @@ padding: var(--inline-space-half) var(--popup-item-padding-inline); text-align: start; - .icon.checked { + .icon.current { display: none; .popup__item--current & { diff --git a/app/helpers/filters_helper.rb b/app/helpers/filters_helper.rb index 1f89eb390..13994f1eb 100644 --- a/app/helpers/filters_helper.rb +++ b/app/helpers/filters_helper.rb @@ -21,7 +21,7 @@ module FiltersHelper concat icon_tag(icon, class: "popup__icon") concat(link_to(path, link_to_params.merge(class: "popup__btn btn")) do concat tag.span(label, class: "overflow-ellipsis") - concat icon_tag("check", class: "checked flex-item-justify-end", "aria-hidden": true) + concat icon_tag("check", class: "current flex-item-justify-end", "aria-hidden": true) end) end end