BigW Consortium Gitlab

milestone.scss 936 Bytes
Newer Older
1
.issues-sortable-list .str-truncated {
2
  max-width: 90%;
3
}
4 5 6 7 8

li.milestone {
  h4 {
    font-weight: bold;
  }
Dmitriy Zaporozhets committed
9 10 11 12

  .progress {
    height: 6px;
  }
13
}
Rubén Dávila committed
14

15 16 17 18 19 20
.milestone-content {
  .issues-count {
    margin-right: 17px;
    float: right;
    width: 105px;
  }
21

22
  .issuable-row {
23
    .color-label {
Rubén Dávila committed
24 25
      border-radius: 2px;
      padding: 3px !important;
26
      margin-right: 7px;
Rubén Dávila committed
27 28 29 30
    }

    // Issue title
    span a {
31
      color: $gl-text-color;
32
    }
33 34
  }
}
35 36

.milestone-summary {
37
  margin-bottom: 25px;
38

39 40 41
  .milestone-stat {
    margin-right: 10px;
  }
42

43
  .remaining-days {
44 45
    color: $orange-light;
  }
46
}
47

48
.issues-sortable-list, .merge_requests-sortable-list {
49
  .issuable-detail {
50
    display: block;
51
    margin-top: 7px;
52

53
    .issuable-number {
54
      color: $gl-placeholder-color;
55 56 57 58 59 60 61
      margin-right: 5px;
    }
    .avatar {
      float: none;
    }
  }
}
62 63 64 65 66

.milestone-detail {
  border-bottom: 1px solid $border-color;
  padding: 20px 0;
}