mirror of https://github.com/apache/cloudstack.git
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:
parent
4bab99972f
commit
2a01fd4c51
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue