From 0e59f565c418ee03e1a5fdf0b376921bdfa2718f Mon Sep 17 00:00:00 2001 From: Bui Date: Sun, 28 Sep 2014 09:17:30 +0900 Subject: [PATCH] change ID text colour on hover --- js/id_colors.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/js/id_colors.js b/js/id_colors.js index d8aaf692..2c6a5775 100644 --- a/js/id_colors.js +++ b/js/id_colors.js @@ -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){