Re: Disable Chrome focus outline in general?

2013-02-20 Thread Tony Rah
In your apps css file just add the below 2 lines. It will scour the outline off of everything. :focus {outline:none;} ::-moz-focus-inner {border:0;} On Tuesday, February 19, 2013 5:28:17 AM UTC-7, membersound wrote: Hi, how can I disable the yellow/orange Chrome focus outline border in

Disable Chrome focus outline in general?

2013-02-19 Thread membersound
Hi, how can I disable the yellow/orange Chrome focus outline border in general on all objects, whatsoever they are? I already have the outline: none !important; property on eg gwt button, input. But time and again I find components which suddently have again the outline. Can I disable this in

Re: Disable Chrome focus outline in general?

2013-02-19 Thread Joe Attardi
What is the CSS rule you're using? Are you using the :focus pseudo-class? On Tue, Feb 19, 2013 at 7:28 AM, membersound kodyreco...@gmail.com wrote: Hi, how can I disable the yellow/orange Chrome focus outline border in general on all objects, whatsoever they are? I already have the

Re: Disable Chrome focus outline in general?

2013-02-19 Thread Kody
No I'm just using eg: .gwt-Button { outline: none !important; } But looking for a way to general prevent this in chrome. 2013/2/19 Joe Attardi j...@attardi.net What is the CSS rule you're using? Are you using the :focus pseudo-class? On Tue, Feb 19, 2013 at 7:28 AM, membersound