@import 'GeneralStyle.less';

// 失败列表
.failed-detail-container {
  line-height: 20px;
  font-size: 12px;
  .detail-trigger {
    display: inline-block;
    position: relative;
    padding-right: 16px;
    cursor: pointer;
    .detail-trigger-text {
      height: 20px;
    }
    .warning-text {
      .detail-trigger-text();
      color: @warning-yellow;
    }
    .error-text {
      .detail-trigger-text();
      color: @error-red;
    }
    .detail-trigger-icon {
      position: absolute;
      right: 0;
      top: 4px;
    }
  }
  .failed-list-wrapper {
    .failed-list-title {
      padding: 0;
      margin: 14px 0 0 0;
      color: @grey;
      font-weight: 400;
    }
    .failed-list-content {
      margin-top: 8px;
      max-height: 204px;
      overflow: hidden;
      overflow-y: auto;
    }
    .failed-list-item {
      float: left;
      background-color: @white;
      border-radius: 2px;
      height: 24px;
      line-height: 24px;
      font-size: 12px;
      padding: 0 6px;
      margin: 0 6px 6px 0;
      font-weight: 400;
    }
  }
}
