forked from leftypol/leftypol
change ID text colour on hover
This commit is contained in:
parent
22f4543e6f
commit
6133386b82
1 changed files with 6 additions and 0 deletions
|
@ -32,6 +32,12 @@ if (active_page == 'thread' || active_page == 'index') {
|
||||||
"border-radius": "8px",
|
"border-radius": "8px",
|
||||||
"color": "white"
|
"color": "white"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$(el).mouseover(function() {
|
||||||
|
$(this).css('color', '#800000');
|
||||||
|
}).mouseout(function() {
|
||||||
|
$(this).css('color', '#FFF');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
$(".poster_id").each(function(k, v){
|
$(".poster_id").each(function(k, v){
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue