Browse Source

Fix expanding boards on boardlist on Webkit browsers using javascript

pull/40/head
Marcin Łabanowski 12 years ago
parent
commit
9a33867e65
  1. 7
      js/chrome-board-expanding-fix.js
  2. 2
      stylesheets/style.css

7
js/chrome-board-expanding-fix.js

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

2
stylesheets/style.css

@ -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;

Loading…
Cancel
Save