Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove yellow border on dojo buttons in chrome

how do I remove the yellow border on buttons that appear in Google Chrome. I have tried to override the style, but imagine if you have to do this for every button.

enter image description here

.dijitReset .dijitStretch .dijitButtonContents{
    outline:none;
}

Any ideas?

like image 866
setlio Avatar asked Aug 15 '12 22:08

setlio


1 Answers

Actually that worked for me. I did this (since I use claro theme)

.claro *
{
    outline: none;
}

So when you do something like this <body class="claro"> ... </body> it should work. I've been looking for a way to do this since a few days but your css snippet took me into the right direction.

like image 171
eburgos Avatar answered Nov 15 '22 09:11

eburgos