1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-26 08:20:58 +01:00

Merge pull request #112 from 7185/master

Poster ID readability
This commit is contained in:
Marcin Łabanowski 2014-09-28 11:35:24 +02:00
commit 5dd7ba1c98

View File

@ -39,18 +39,22 @@ if (active_page == 'thread' || active_page == 'index') {
function colorPostId(el) {
var rgb = IDToRGB($(el).text());
var ft = "#fff";
if ((rgb[0]*0.299 + rgb[1]*0.587 + rgb[2]*0.114) > 125)
ft = "#000";
$(el).css({
"background-color": "rgb("+rgb[0]+", "+rgb[1]+", "+rgb[2]+")",
"padding": "0px 5px",
"border-radius": "8px",
"color": "white"
"color": ft
});
$(el).mouseover(function() {
$(this).css('color', '#800000');
$(this).css('color', '#800000'); // how about a CSS :hover rule instead?
}).mouseout(function() {
$(this).css('color', '#FFF');
$(this).css('color', ft);
});
}