commits.scss 4.95 KB
.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 a,
    .committer a {
      font-size: 14px;
      line-height: 22px;
      text-shadow: 0 1px 1px #fff;
      color: #777;
      &:hover {
        color: #999;
      }
    }

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

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

  .diff_file_header {
    @extend .clearfix;
    padding: 5px 5px 5px 10px;
    color: #555;
    border-bottom: 1px solid #CCC;
    background: #eee;
    // TODO Replace with linear-gradient mixin
    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-family: $monospace;
      font-size: 14px;
      line-height: 30px;
    }

    a.view-commit{
      font-weight: bold;
    }

    .commit-short-id{
      font-family: $monospace;
      font-size: smaller;
    }

    .file-mode{
      font-family: $monospace;
    }
  }
  .diff_file_content {
    overflow: auto;
    overflow-y: hidden;
    background: #fff;
    color: #333;
    font-size: 12px;
    font-family: $monospace;
    .old{
      span.idiff{
        background-color: #FAA;
      }
    }
    .new{
      span.idiff{
        background-color: #AFA;
      }
    }

    table {
      td {
        line-height: 18px;
      }
    }
  }
  .diff_file_content_image {
    background: #eee;
    text-align: center;
    .image {
      display: inline-block;
      margin: 50px;
      max-width: 400px;

      img{
        background: url('trans_bg.gif');
      }

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

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

      .image-info{
        margin: 5px 0 0 0;
      }
    }

    &.img_compared {
      .image {
        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 {
  .browse_code_link_holder {
    @extend .span2;
    float: right;
  }

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

  .notes_count {
    float: right;
    margin: -6px 8px 6px;
  }

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

  .commit_short_id {
    float: left;
    @extend .lined;
    min-width: 65px;
    font-family: $monospace;
  }

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

.diff_file_header a,
.file-stats a {
  color: $style_color;
}

.file-stats {
  .new-file{
    i{
      color: #1BCF00;
    }
  }
  .renamed-file{
    i{
      color: #FE9300;
    }
  }
  .deleted-file{
    i{
      color: #FF0000;
    }
  }
  .edit-file{
    i{
      color: #555;
    }
  }
}

.label_commit {
  @include border-radius(4px);
  padding: 2px 4px;
  font-size: 13px;
  background: #474D57;
  color: #fff;
  font-family: $monospace;
}


.commits-compare-switch{
  background: url('switch_icon.png');
  width: 16px;
  height: 18px;
  text-indent: -9999px;
  display: inline-block;
}