.commit-box {
  @extend .main_box;

  .commit-head {
    @extend .top_box_content;

    .commit-title {
      line-height: 26px;
      margin:0;
    }

    .commit-description {
      font-size: 14px;
      border: none;
      background-color: white;
      padding-top:10px;
    }

    .browse-button {
      @extend .btn;
      @extend .btn-small;
      float: right;
    }
  }

  .commit-info {
    @extend .middle_box_content;
    @extend .clearfix;

    .sha-block {
      text-align:right;
      &:first-child {
        padding-bottom:6px;
      }

      a {
        border-bottom: 1px solid #aaa;
        margin-left: 9px;
      }
    }

    &.merge-commit .sha-block {
      clear: right;
    }

    .committer {
      padding-left: 32px;
    }

    .author,
    .committer {
      font-size:14px;
      line-height:22px;
      text-shadow:0 1px 1px #fff;
      color:#777;
    }

    .avatar {
      margin-right: 10px;
    }
  }
}

/**
 *
 * COMMIT SHOw
 *
 */
.diff_file {
  border:1px solid #CCC;
  margin-bottom:1em;

  .diff_file_header {
    padding:7px 5px;
    border-bottom:1px solid #CCC;
    background: #eee;
    background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
    background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
    background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
    background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);

    span {
      font-size:14px;
    }
  }
  .diff_file_content {
    overflow:auto;
    overflow-y:hidden;
    background:#fff;
    color:#333;
    font-size: 12px;
    font-family: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
    .old{
      span.idiff{
        background-color:#FAA;
      }
    }
    .new{
      span.idiff{
        background-color:#AFA;
      }
    }

  }
  .diff_file_content_image {
    background:#eee;
    text-align:center;
    img {
      margin:50px;
      padding:1px;
      max-width:400px;

      &.diff_image_removed {
        border: 1px solid #C00;
      }

      &.diff_image_added {
        border: 1px solid #0C0;;
      }
    }

    &.img_compared {
      img {
        max-width:300px;
      }
    }
  }
}

.diff_file_content{
  table {
    border:none;
    margin:0px;
    padding:0px;
    tr {
      td {
        font-size:12px;
      }
    }
  }
  .old_line, .new_line {
    margin:0px;
    padding:0px;
    border:none;
    background:#EEE;
    color:#666;
    padding: 0px 5px;
    border-right: 1px solid #ccc;
    text-align:right;
    min-width:35px;
    max-width:35px;
    width:35px;
    moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    a {
      float:left;
      width:35px;
      font-weight:normal;
      color:#666;
      &:hover {
        text-decoration:underline;
      }
    }
  }
  .line_content {
    white-space:pre;
    height:14px;
    margin:0px;
    padding:0px;
    border:none;
    &.new {
      background: #CFD;
    }
    &.old {
      background: #FDD;
    }
    &.matched {
      color:#ccc;
      background:#fafafa;
    }
  }
}

/** COMMIT BLOCK **/
.commit-title{display: block;}
.commit-title{margin-bottom: 10px}
.commit-author, .commit-committer{display: block;color: #999; font-weight: normal; font-style: italic;}
.commit-author strong, .commit-committer strong{font-weight: bold; font-style: normal;}


/** COMMIT ROW **/
.commit {
  @extend .wll;

  .browse_code_link_holder {
    @extend .span2;
    float:right;
  }

  .committed_ago {
    float:right;
    @extend .cgray;
  }

  code {
    background:#FCEEC1;
    color:$style_color;
  }

  .commit_short_id {
    float:left;
    @extend .lined;
    min-width:65px;
    font-family: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
  }

  .commit-author-name {
    color: #777;
  }
}

.diff_file_header a,
.file_stats a {
  color:$style_color;
}

.file_stats {
  span {
    img {
      width:14px;
      float:left;
      margin-right:6px;
      padding:2px 0;
    }
  }
}

.label_commit {
  @include round-borders-all(4px);
  padding:2px 4px;
  border:none;
  font-size:13px;
  background: #474D57;
  color:#fff;
  font-family: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
}