I have a html cell on a form like.....
<button onClick="AwareApp.startProcessFromForm ('MyProcess','main', this, true)" type="button" class="BuyPlanButton" role="button">Buy</button>
The css for this is...
.BuyPlanButton {
background-color:#89c403;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
border:1px solid #74b807;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Tahoma;
font-size:18px;
padding:4px 7px;
text-decoration:none;
text-align: center;
width: 100px;
}
.BuyPlanButton:hover {
background-color:#77a809;
}
.BuyPlanButton:active {
position:relative;
top:1px;
}
For some weird reason when I go to click the button, only the top half of the button is active. If I move the mouse onto the button from the bottom, the active is not sensed until I am near the vertical center of the button.
If I bring the mouse over the button from the top then the active is sensed as soon as the mouse touches the top of the button.
Been tearing the hair out trying to fix this to no avail.
Any ideas would be appreciated please.