Don't add draft status to cards

This commit is contained in:
Jason Zimdars
2025-11-04 21:53:37 -06:00
parent 06a740f528
commit df640d50e5
2 changed files with 1 additions and 10 deletions
-8
View File
@@ -441,14 +441,6 @@
}
}
.card--drafted {
--card-color: var(--color-ink-medium) !important;
border-color: var(--card-color) !important;
border-style: dashed !important;
box-shadow: none !important;
}
.card:has(.card__background img:not([src=""])) {
.card__content,
.card__meta,
+1 -2
View File
@@ -4,8 +4,7 @@ module CardsHelper
options.delete(:class),
("golden-effect" if card.golden?),
("card--postponed" if card.postponed?),
("card--active" if card.active?),
("card--drafted" if card.drafted?)
("card--active" if card.active?)
].compact.join(" ")
tag.article \