From 69010787bc98f1ef1b3278ab485b3bf0a090475d Mon Sep 17 00:00:00 2001 From: Cinder Date: Mon, 25 Nov 2024 07:35:10 -0800 Subject: [PATCH] [Blacklist] Fix thumbnails not getting marked as matching the blacklist (#805) --- app/javascript/src/styles/common/thumbnails.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/javascript/src/styles/common/thumbnails.scss b/app/javascript/src/styles/common/thumbnails.scss index 7330aae00..2cdd3cd52 100644 --- a/app/javascript/src/styles/common/thumbnails.scss +++ b/app/javascript/src/styles/common/thumbnails.scss @@ -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); + } }