Browse Source

change ID text colour on hover

pull/40/head
Bui 10 years ago
committed by czaks
parent
commit
6133386b82
  1. 6
      js/id_colors.js

6
js/id_colors.js

@ -32,6 +32,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){

Loading…
Cancel
Save