The .nvd3 .nv-bars rect:hover style was incorrect. it needs to be "rect.hover",

because we are applying the hover class when we mouse over a bar.
master
Robin Hu 11 years ago
parent 8479f5fce1
commit 81bf049daa

@ -248,7 +248,7 @@ svg .title {
-webkit-transition: fill-opacity 250ms linear;
}
.nvd3 .nv-bars rect:hover {
.nvd3 .nv-bars rect.hover {
fill-opacity: 1;
}

Loading…
Cancel
Save