XF 2.0 Closed threads styling

Sunka

Well-known member
Hi,
if anyone knows what to put in extra.less to make title for only closed threads in another color and some extra font styling and change thread background color.

Thank you
 
I do not know yet, could you give me example for extra.less because I can not find class for closed threads.
I want to change title font for closed threads and background for that threads.
I found class for soft deleted and sticky threads but not for closed threads.
 
CSS:
.structItemContainer-group--deleted {
background-color: @xf-paletteAccent1;
}
.structItemContainer-group--deleted .structItem-title a:link,
.structItemContainer-group--deleted .structItem-title a:visited {
color: @xf-paletteAccent3;
}
Try please.
 
@Emre
Thanks but not working

For soft deleted threads I have this
CSS:
.structItem.is-deleted
{
    background-color: #b1b1b1;
}

.structItem.is-deleted .structItem-title
{
    text-decoration: none;
}

But for closed threads I can not find nothing
 
Back
Top Bottom