gwt - how to remove the focus on disclosure panel's header -


i noticed whenever click disclosure panel's header, got focused, namely can see black dotted border around header, there way can rid of that? thanks.

you can achieve setting css style outline:0 on disclosure header:

.gwt-disclosurepanel .header {   outline:0; } 

see http://css-tricks.com/removing-the-dotted-outline/ need remove outline a anchor element.


Comments

Popular posts from this blog

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -

java - Getting corefrences with Standard corenlp package -

Java - Returning an array from a method to main -