I have an Angular button:
<button md-button class="link-btn" >Cancel</button>
.link-btn {
background-color: transparent;
background-repeat: no-repeat;
border: none;
cursor:pointer;
overflow: hidden;
outline:none;
font-size: 0.8em;
padding: 0px;
}
.link-btn:hover {
background-color: transparent;
background-repeat: no-repeat;
border: none;
cursor:pointer;
overflow: hidden;
outline:none;
font-size: 0.8em;
padding: 0px;
}
Normally it is setting transparent background, but in hover state, gray background is shown? How to remove that?