Resource icon

"Faded" locked threads

Great idea but is there a way to exclude stickied locked threads? I have several threads which are both stickied and locked and this change then makes those less obvious.

edit:

I simply added this...
Code:
.sticky {
opacity: 1;
}
 
Code:
.locked.sticky {
opacity: 1.0;
}

That is the code I use, must have forgotten to add it to the resource :)
 
Code:
.locked {
opacity: 0.4;
}
.locked.sticky {
opacity: 1.0;
}
I guess lowering the number 0.4 should do it. Try to use 0.3, 0.2 or 0.1.
 
Top Bottom