issue_box.scss 1.16 KB
/**
 * Issue box:
 * Huge block (one per page) for storing title, descripion and other information.
 * Used for Issue#show page, MergeRequest#show page etc
 *
 * CLasses:
 *   .issue-box - Regular box
 */

.issue-box {
  color: #666;
  margin:20px 0;
  background: #FAFAFA;
  border: 1px solid #EEE;

  .control-group {
    margin-bottom: 0;
  }

  .state {
    height: 34px;
    border-bottom: 1px solid #DDD;
    line-height: 32px;
  }

  .title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    color: #333;
    padding-bottom: 0;
    padding: 15px 25px;
  }

  .context {
    border: none;
    border-top: 1px solid #eee;
    padding: 15px 25px;
  }

  .description {
    padding: 0 25px 15px 25px;
  }

  .title, .context, .description {
    .clearfix {
      margin: 0;
    }
  }

  .state-label {
    font-size: 14px;
    padding: 9px 25px;
    text-align: center;
    text-shadow: none;
    margin-right: 20px;

    &.state-label-blue {
      background: #31708f;
      color: #FFF;
    }

    &.state-label-green {
      background: #4A4;
      color: #FFF;
    }

    &.state-label-red {
      background: #DA4E49;
      color: #FFF;
    }
  }
}