Answers with low scores are faded out. This is good. However, it would be nice to have the ability to temporarily un-fade such answers should we want to have an easier time reading them (for example, maybe there's a status-declined answer with a score in the -50's that you're having trouble reading). Rollover seems like a reasonable way to do this, or maybe clicking the answer's text.

share|improve this question
You could click edit – Nick T Apr 18 '12 at 3:03
That's not exactly convenient, and it does nothing for comments attached to the answer. – Toomai Apr 18 '12 at 3:08
1  
Do you only want this on Meta, where it is likely that someone would actually be reading a heavily-downvoted answer? Because I can't really see how it would be useful elsewhere... – Cody Gray Apr 18 '12 at 3:11
I can userscript it for you if you want... – Manishearth Apr 18 '12 at 3:16

1 Answer

JQUERY TIME!

$('.downvoted-answer').on("click",function(){$(this).find('.post-text, .post-signature, .votecell, .comments').css('color','#000');this.clicked=true;});
$('.downvoted-answer').on("mouseover",function(){$(this).find('.post-text, .post-signature, .votecell, .comments').css('color','#000')});
$('.downvoted-answer').on("mouseout",function(){if(!this.clicked){$(this).find('.post-text, .post-signature, .votecell, .comments').css('color','#888')}});

This fades in/out on mouseover/out, and makes it permanent if you click it.

Userscript in two ticks.

Here it is; bundled in a nice userscript

share|improve this answer
1  
You should totally drop that and use jQuery...oh wait! – M. Night Demonbobby Apr 18 '12 at 10:44

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged