Is it possible to display finished question with a different color on the overview?
<p>In the question list, you cannot see if a question has got accepted answers. It's not highlighted and it makes answering more difficult.</p>
<p>It would be a great help to highlight the answers.</p>
<p>This CSS snipplet would be a good catch, imho:</p>
<pre><code>div.answered-accepted {
color: #1C946C;
}
</code></pre>
<p>These screenshots show the difference:</p>
<p><img src="http://imgur.com/anmwg.jpg" alt="current status"> <img src="http://imgur.com/Re2Dp.jpg" alt="With highlighting"></p>
<p>I made a small bookmarklet, that will apply the changes to your current page.</p>
<pre><code>javascript:styles='div.answered-accepted%20{%20color:%20#1C946C;%20}';%20newSS%20=%20document.createElement('link');%20newSS.rel%20=%20'stylesheet';%20newSS.href%20=%20'data:text/css,'%20+%20escape(styles);%20document.documentElement.childNodes[0].appendChild(newSS);%20void%200
</code></pre>
<p>JavaScript links don't work, so you need to create the bookmarklet for yourself by copy & paste.</p>