Ensure check icons are targeted properly

This commit is contained in:
Andy Smith
2025-10-27 15:27:24 -05:00
parent c3cf967f8a
commit cd59b745fc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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 & {
+1 -1
View File
@@ -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