XF 1.4 Change Background Color of Moderated Threads

Amaury

Well-known member
I'd like to change the background color of moderated threads to match that of our background color for pinned threads.

I managed to change it for soft-deleted threads with this:

Code:
.discussionList .discussionListItem.deleted {
    background-color: @primaryLightest;
}

So I tried using the same CSS above for moderated threads, but with a small modification, to no avail:

Code:
.discussionList .discussionListItem.moderated {
    background-color: @primaryLightest;
}
 
Top Bottom