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 badges2 Answers
Reset to default 9Add 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
版权声明:本文标题:javascript - Fancytree remove blue border when selected - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741279769a2369938.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论