Quick view: remove extra padding area

Remove extra 'buffer zone' around quick view tooltip. This was
causing misleading behavior in some cases, due to the cursor being
hovered over a different row while another row's quick view was
still open
This commit is contained in:
Brian Federle 2014-07-17 11:40:27 -07:00
parent 4bab99972f
commit 2a01fd4c51
2 changed files with 3 additions and 3 deletions

View File

@ -1396,14 +1396,14 @@ div.list-view td.state.off span {
.quick-view-tooltip {
width: 470px;
display: inline-block;
padding-top: 50px;
padding-top: 0;
margin-left: 8px;
}
.quick-view-tooltip > div.title {
width: 444px;
position: absolute;
top: 71px;
top: 20px;
left: 10px;
color: #808080;
font-weight: 100;

View File

@ -1462,7 +1462,7 @@
$quickViewTooltip.css({
position: 'absolute',
left: $tr.offset().left + $tr.width() - $quickViewTooltip.width(),
top: $quickView.offset().top - 50,
top: $quickView.offset().top,
zIndex: $tr.closest('.panel').zIndex() + 1
});