Account for pending cards

This commit is contained in:
mez 2025-03-08 12:15:47 +00:00
parent 042d143b04
commit bfe656a5b4
4 changed files with 46 additions and 2 deletions

View file

@ -563,7 +563,27 @@ span.searchresults {
font-family: monospace;
}
/* coupons */
img.coupon.expired {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
/* pending cards */
td:has(.pending) {
position: relative;
}
td:has(.pending) img {
filter: hue-rotate(180deg);
}
td p.pending {
position: absolute;
font-size: 10px;
top: 50%;
left: 50%;
transform: translate(-50%, -200%);
}