Simply add this to your stylesheet and simply add the class="no_highlights"
attribute to the element you wish to apply this class to.
.no_highlights{
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
or you can do this globally for all the elements by removing class name and doing this.
button,
textarea,
input,
select,
a{
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Thanks :)
but anyway, the blue border is there as an accessibility feature. It looks bad but, It helps someone who needs it most.