BigW Consortium Gitlab

milestone.scss 1.17 KB
Newer Older
1
.issues-sortable-list .str-truncated {
2
  max-width: 90%;
3
}
4

5 6 7 8 9 10 11
.milestones {
  .milestone {
    padding: 10px 16px;

    h4 {
      font-weight: bold;
    }
Dmitriy Zaporozhets committed
12

13 14 15
    .progress {
      height: 6px;
    }
Dmitriy Zaporozhets committed
16
  }
17
}
Rubén Dávila committed
18

19 20 21 22 23 24
.milestone-content {
  .issues-count {
    margin-right: 17px;
    float: right;
    width: 105px;
  }
25

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

    // Issue title
    span a {
35
      color: $gl-text-color;
36
      word-wrap: break-word;
37
    }
38 39
  }
}
40 41

.milestone-summary {
42
  margin-bottom: 25px;
43

44 45 46
  .milestone-stat {
    margin-right: 10px;
  }
47

48
  .remaining-days {
49 50
    color: $orange-light;
  }
51
}
52

53 54
.issues-sortable-list,
.merge_requests-sortable-list {
55
  .issuable-detail {
56
    display: block;
57
    margin-top: 7px;
58

59
    .issuable-number {
60
      color: $gl-placeholder-color;
61 62
      margin-right: 5px;
    }
63

64 65 66 67 68
    .avatar {
      float: none;
    }
  }
}
69 70 71 72 73

.milestone-detail {
  border-bottom: 1px solid $border-color;
  padding: 20px 0;
}
74 75 76 77 78 79 80 81 82 83 84

@media (max-width: $screen-sm-min) {
  .milestone-actions {
    @include clearfix();
    padding-top: $gl-vert-padding;

    .btn:first-child {
      margin-left: 0;
    }
  }
}