Hide stages within columns

This commit is contained in:
Andy Smith
2025-09-24 13:23:15 -05:00
parent 113063ada3
commit 37cc95f7ce
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -244,6 +244,7 @@
z-index: 1;
}
.card__stages,
.card__hide-on-index {
display: none;
}
@@ -361,6 +362,7 @@
rotate: 180deg;
}
}
.card {
--avatar-size: 2.75em;
--text-small: 1.1em;
@@ -387,6 +389,7 @@
/* The following groups the header and title on considering cards */
.card__header {
color: var(--color-ink);
padding-block-start: calc(var(--card-padding-block) / 2);
}
.card__collection,
+1 -1
View File
@@ -71,7 +71,7 @@ module CardsHelper
end
def cards_expander(title, count)
tag.header class: "cards__expander btn btn--plain", data: { action: "click->collapsible-columns#toggle" }, style: "--card-count: #{[count, 20].min}", aria: { role: "button" } do
tag.header class: "cards__expander btn btn--plain", data: { action: "click->collapsible-columns#toggle" }, style: "--card-count: #{[ count, 20 ].min}", aria: { role: "button" } do
concat(tag.span count > 99 ? "99+" : count, class: "cards__expander-count")
concat(tag.h2 title, class: "cards__expander-title")
end