.tree-holder {
  .tree-content-holder {
    float:left;
    width:100%;
  }

  .tree_progress {
    display:none;
    margin:20px;
    &.loading {
      display:block;
    }
  }

  .tree-table {
    @include border-radius(0);
    .tree-item {
      &:hover {
        td {
          background: $hover;
          border-top:1px solid #ADF;
          border-bottom:1px solid #ADF;
        }
        cursor:pointer;
      }
    }
  }

  .tree-item {
    .tree-item-file-name {
      vertical-align:middle;
      a {
        &:hover {
          color:$blue_link;
        }
      }

      img {
        position: relative;
        top:-1px;
      }
    }
  }

  .tree-table {
    td {
      background:#fafafa;
    }
  }

  .tree-commit-link {
    color:#333;
  }

  a.tree-commit-link {
    color: #666;
    &:hover {
      text-decoration: underline;
    }
  }
}