[Blacklist] Fix thumbnails not getting marked as matching the blacklist (#805)

This commit is contained in:
Cinder 2024-11-25 07:35:10 -08:00 committed by GitHub
parent 86ba2fd4ed
commit 69010787bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -77,6 +77,11 @@ article.thumbnail {
@each $name, $color in ("e": "red", "q": "yellow", "s": "green") {
&[data-rating=#{$name}] .desc .rating { color: palette("text-#{$color}"); }
}
// Post matches blacklist
&.filter-matches .desc {
background-color: var(--palette-background-red);
}
}