#tree-holder { 
  #tree-content-holder {
    float:left;
    width:100%;
  }
  #tree-readme-holder {
    float:left;
    width:100%;
    .readme {
      border:1px solid #ccc;
      padding:12px;
      background: #F7F7F7;

      pre { 
        overflow: auto;
      }
    }
  }

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

  #tree-slider {
    @include border-radius(0);
    .tree-item { 
      &:hover { 
        td { background: $hover; }
        cursor:pointer;
      }
    }
  }

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

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


  #tree-slider { 
    @include solid_shade;
    width:100%;

    border-color:#ccc;

    td { 
      padding:8px;
      border-color:#f1f1f1;
      background:#fafafa;
    }

    tr:first-child td:first-child, 
    tr:first-child td:last-child { 
      border-radius:0;
    }

    th { 
      border-color: #CCC;
      border-bottom: 1px solid #bbb;
      @include bg-gray-gradient;
    }
  }

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

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

}