admin管理员组

文章数量:1277317

Using fancytree, how can I prevent the boundary around the fancytree div from being blue when it's active?

To replicate, go to the link below, click inside the fancytree control (click any node) and the light gray dotted border gets a blue highlight. No good!

.html

Using fancytree, how can I prevent the boundary around the fancytree div from being blue when it's active?

To replicate, go to the link below, click inside the fancytree control (click any node) and the light gray dotted border gets a blue highlight. No good!

http://wwwendt.de/tech/fancytree/demo/sample-configurator.html https://github./mar10/fancytree

Share Improve this question asked Sep 24, 2014 at 19:21 GallaxharGallaxhar 1,0361 gold badge16 silver badges30 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

Add the style: outline:none !important; to either .fancytree-container and it won't get the outline around the fancytree

Little update on this, depending on your version / theme you may also need to disable outline: on .fancytree-treefocus class too, i.e.

.fancytree-container {
    border: none !important;
}
.fancytree-treefocus {
    outline: none;
}

本文标签: javascriptFancytree remove blue border when selectedStack Overflow