Hidden tooltips should be display: none

`display: block; opacity: 0` leads to odd mouse behavior.
This commit is contained in:
John Firebaugh
2013-03-05 12:28:56 -08:00
parent b53014e50f
commit e106db76d4
+2 -4
View File
@@ -1528,16 +1528,14 @@ a.success-action {
.tooltip {
width: 200px;
position: absolute;
z-index: -1000;
height: 0;
opacity: 0;
display: block;
display: none;
}
.tooltip.in {
opacity: 0.8;
z-index: 1030;
height: auto;
display: block;
}
.tooltip.top {