1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-29 01:34:31 +01:00

change ID text colour on hover

This commit is contained in:
Bui 2014-09-28 09:17:30 +09:00
parent 836e557773
commit 0e59f565c4

View File

@ -46,6 +46,12 @@ if (active_page == 'thread' || active_page == 'index') {
"border-radius": "8px",
"color": "white"
});
$(el).mouseover(function() {
$(this).css('color', '#800000');
}).mouseout(function() {
$(this).css('color', '#FFF');
});
}
$(".poster_id").each(function(k, v){