mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-23 23:20:57 +01:00
CSS hover instead of javascript mouseover. Need to use important because the dark/light text determined by IDToRGB is added inline and takes priority over stylesheets.
This commit is contained in:
parent
cdd963e79e
commit
04f42b3802
@ -50,12 +50,6 @@ if (active_page == 'thread' || active_page == 'index') {
|
|||||||
"border-radius": "8px",
|
"border-radius": "8px",
|
||||||
"color": ft
|
"color": ft
|
||||||
});
|
});
|
||||||
|
|
||||||
$(el).mouseover(function() {
|
|
||||||
$(this).css('color', '#800000'); // how about a CSS :hover rule instead?
|
|
||||||
}).mouseout(function() {
|
|
||||||
$(this).css('color', ft);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$(".poster_id").each(function(k, v){
|
$(".poster_id").each(function(k, v){
|
||||||
|
@ -913,7 +913,9 @@ pre {
|
|||||||
.poster_id {
|
.poster_id {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
.poster_id:hover {
|
||||||
|
color: #800000!important;
|
||||||
|
}
|
||||||
.poster_id::before {
|
.poster_id::before {
|
||||||
content: " ID: ";
|
content: " ID: ";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user