forked from GithubBackups/vichan
Merge pull request #108 from bui/master
remove vertical padding on coloured IDs
This commit is contained in:
commit
b2ab0d1e49
@ -42,10 +42,16 @@ if (active_page == 'thread' || active_page == 'index') {
|
|||||||
|
|
||||||
$(el).css({
|
$(el).css({
|
||||||
"background-color": "rgb("+rgb[0]+", "+rgb[1]+", "+rgb[2]+")",
|
"background-color": "rgb("+rgb[0]+", "+rgb[1]+", "+rgb[2]+")",
|
||||||
"padding": "3px 5px",
|
"padding": "0px 5px",
|
||||||
"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…
x
Reference in New Issue
Block a user