From 6133386b826758d03caf938b15266efa88ecb200 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 512bb591..bde2a969 100644 --- a/js/id_colors.js +++ b/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){