Themeable button has a black border

Issues related to previewing and publishing your web site.
Post Reply
User avatar
wwonderfull
 
 
Posts: 1536
Joined: Fri Aug 21, 2020 8:27 am
Contact:

Themeable button has a black border

Post by wwonderfull »

Themeable button has a black border when it is clicked although I already have a border set which you can see in green. It is weird to see a black border and it is distracting. Please make a fix on this.

Image
User avatar
Pablo
 
Posts: 23007
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Themeable button has a black border

Post by Pablo »

Note that this is not a bug. It is the focus outline of the browser to indicate which element on the page currently has the focus.

You can disable the outline via this code:

Code: Select all

<style>
#ThemeableButton1
{
   outline: none;
}
</style>
User avatar
wwonderfull
 
 
Posts: 1536
Joined: Fri Aug 21, 2020 8:27 am
Contact:

Re: Themeable button has a black border

Post by wwonderfull »

Did what it was intended to do. Perfect...
Thank You Pablo
Post Reply