I am facing an issue with a button I created. When I click the button, the frame color changes and I cannot figure out why. I have attached images showing the button before and after it is clicked.
Before: https://i.sstatic.net/5jpB1.png
After: https://i.sstatic.net/njygq.png
Here is the CSS code for the button:
.aproveBtn
background: $add-button;
background-image: -webkit-linear-gradient(top, $add-button, $add-button);
background-image: -moz-linear-gradient(top, $add-button, $add-button);
background-image: -ms-linear-gradient(top, $add-button, $add-button);
background-image: -o-linear-gradient(top, $add-button, $add-button);
background-image: linear-gradient(to bottom, $add-button, $add-button);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
font-family: Arial;
color: #ffffff;
@include font-size(20);
padding: 0px 35px 2px 36px;
text-decoration: none;
Thank you