Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fancytree remove blue border when selected

Using fancytree, how can I prevent the boundary around the fancytree div from becoming 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.com/mar10/fancytree

enter image description here

like image 538
Gallaxhar Avatar asked Sep 24 '14 19:09

Gallaxhar


2 Answers

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

like image 177
Alvaro Montoro Avatar answered Nov 12 '22 01:11

Alvaro Montoro


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;
}
like image 3
HeavenCore Avatar answered Nov 12 '22 01:11

HeavenCore