/* 
   abn-tree.css

   style for the angular-bootstrap-nav-tree
   for both Bootstrap 2 and Bootstrap 3

*/



/* ------------------------------------------
AngularJS Animations...

The first selector is for Angular 1.1.5
The second selector is for Angular 1.2.0

*/
.abn-tree-animate-enter,
li.abn-tree-row.ng-enter {
  transition: 200ms linear all;
  position: relative;
  display: block;
  opacity: 0;
  max-height:0px;
}
.abn-tree-animate-enter.abn-tree-animate-enter-active,
li.abn-tree-row.ng-enter-active{
  opacity: 1;
  max-height:30px;
}

.abn-tree-animate-leave,
li.abn-tree-row.ng-leave {
  transition: 200ms linear all;
  position: relative;
  display: block;
  height:30px;
  max-height: 30px;
  opacity: 1;
}
.abn-tree-animate-leave.abn-tree-animate-leave-active,
li.abn-tree-row.ng-leave-active {  
  height: 0px;
  max-height:0px;
  opacity: 0;
}


/* 
------------------------------------------
Angular 1.2.0 Animation 
*/


.abn-tree-animate.ng-enter{

}
.abn-tree-animate.ng-enter{

}




/*
   end animation stuff
-----------------------------------------
   begin normal css stuff
*/
ul.abn-tree li.abn-tree-row {  
  padding: 0px;
  margin:0px;
}

ul.abn-tree li.abn-tree-row a {
  padding: 3px 10px;
}

ul.abn-tree i.indented {
  padding: 2px;
}

.abn-tree {
  cursor: pointer;
}
ul.nav.abn-tree .level-1 .indented {
  position: relative;
  left: 0px;
}
ul.nav.abn-tree .level-2 .indented {
  position: relative;
  left: 20px;
}
ul.nav.abn-tree .level-3 .indented {
  position: relative;
  left: 40px;
}
ul.nav.abn-tree .level-4 .indented {
  position: relative;
  left: 60px;
}
ul.nav.abn-tree .level-5 .indented {
  position: relative;
  left: 80px;
}
ul.nav.abn-tree .level-6 .indented {
  position: relative;
  left: 100px;
}
ul.nav.nav-list.abn-tree .level-7 .indented {
  position: relative;
  left: 120px;
}
ul.nav.nav-list.abn-tree .level-8 .indented {
  position: relative;
  left: 140px;
}
ul.nav.nav-list.abn-tree .level-9 .indented {
  position: relative;
  left: 160px;
}




/*Overwrite with PLM Styles*/
.abn-tree {
   font-size:11px;
}
.abn-tree.nav-pills > li.active > a, .abn-tree.nav-pills > li.active > a:hover, .abn-tree.nav-pills > li.active > a:focus {
    background-image: url("../../Resources/Images/FolderRowActive.png");
    background-repeat: repeat-x;
    background-size: 100% 100%;
}
ul.abn-tree li.abn-tree-row a {
    padding:2px 0px;    
}
ul.abn-tree li.abn-tree-row a .tree-label  {
    /*line-height:1px;*/
}
.abn-tree .tree-label  {
    /*font-size:11.5px;*/
   /*font-weight:500;*/
   color:rgb(17,139,202);
   padding-left: 2px;
   padding-top: 0px;
   margin-top:0px;
}
.icon-trianglebottomright {
    margin-bottom:-3px;
    margin-right:5px;
    height:16px;
    width:16px;
    background-image: url("../../Resources/Images/TriangleBottomRight.png");
    background-repeat: repeat-x;
    background-size: 100% 100%;
}
.icon-triangleright {
    margin-bottom:-3px;
    margin-right:5px;
    height:16px;
    width:16px;
    background-image: url("../../Resources/Images/TriangleRight.png");
    background-repeat: repeat-x;
    background-size: 100% 100%;
}
.icon-placeholder
{        
    margin-bottom:-3px;
    margin-right:5px;
    height:16px;
    width:16px;    
}
.icon-folder
{   
    margin-bottom:-3px;
    height:16px;
    width:16px;
    background-image: url("../../Resources/Images/Folder.png");
    background-repeat: repeat-x;
    background-size: 100% 100%;
}
.active .icon-folder
{
    margin-bottom:-3px;
    height:16px;
    width:16px;
    background-image: url("../../Resources/Images/FolderSelected.png");
    background-repeat: repeat-x;
    background-size: 100% 100%;
}

