1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-29 01:34:31 +01:00

Fix expanding boards on boardlist on Webkit browsers using javascript

This commit is contained in:
Marcin Łabanowski 2012-12-23 00:48:14 +01:00
parent 8e20c9b151
commit ed2074d464
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,7 @@
$(document).ready(function(){
$(".desktop-style .sub .sub").on("mouseover", function() {
$(this).addClass("hover");
}).on("mouseout", function() {
$(this).removeClass("hover");
});
});

View File

@ -427,7 +427,7 @@ table.mod.config-editor input[type="text"] {
width: 7px;
background: url('img/arrow.png') right center no-repeat;
}
.desktop-style .sub .sub:hover {
.desktop-style .sub .sub:hover, .desktop-style .sub .sub.hover {
display: inline;
text-indent: 0px;
background: inherit;