Center info icon. Show highlight hover with select box
This commit is contained in:
parent
974e962a55
commit
3ec6ec1a9d
|
@ -616,7 +616,7 @@
|
|||
</div>
|
||||
|
||||
<div class="bottom-info-container">
|
||||
<img src="images/icon-information@2x.png" width="18" height="18"> Learn more about Mode S data type by hovering over each data label.
|
||||
<img src="images/icon-information@2x.png" width="18" height="18"><div class="bottom-info-text"> Learn more about Mode S data type by hovering over each data label.</div>
|
||||
</div>
|
||||
|
||||
<div class="bottom-container">
|
||||
|
|
|
@ -1360,7 +1360,6 @@ function sortBy(id,sc,se) {
|
|||
function selectPlaneByHex(hex,autofollow) {
|
||||
//console.log("select: " + hex);
|
||||
// If SelectedPlane has something in it, clear out the selected
|
||||
removeHighlight();
|
||||
if (SelectedAllPlanes) {
|
||||
deselectAllPlanes();
|
||||
}
|
||||
|
@ -1404,10 +1403,6 @@ function selectPlaneByHex(hex,autofollow) {
|
|||
}
|
||||
|
||||
function highlightPlaneByHex(hex) {
|
||||
// if we've selected a plane, don't show the highlighting box
|
||||
if (SelectedPlane != null) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (hex != null) {
|
||||
HighlightedPlane = hex;
|
||||
|
|
|
@ -716,6 +716,13 @@ select.error, textarea.error, input.error {
|
|||
color: #002F5D;
|
||||
line-height: 18px;
|
||||
}
|
||||
.bottom-info-container img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.bottom-info-container .bottom-info-text {
|
||||
vertical-align: middle;
|
||||
display: inline;
|
||||
}
|
||||
.selected_airframe {
|
||||
padding-top: 30px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue