summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/milestone.scss
blob: c3f6220db8733912f7071cebaf38053507363b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.issues-sortable-list .str-truncated {
  max-width: 90%;
}

li.milestone {
  h4 {
    font-weight: bold;
  }

  .progress {
    height: 6px;
  }
}

.milestone-content {
  .issues-count {
    margin-right: 17px;
    float: right;
    width: 114px;
  }

  .issuable-row {
    .color-label {
      border-radius: 2px;
      padding: 3px !important;
      margin-right: 7px;
    }

    // Issue title
    span a {
      color: rgba(0,0,0,0.64);
    }
  }
}

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

  .milestone-stat {
    margin-right: 10px;
  }

  .remaining-days {
    color: $orange-light;
  }
}

.issues-sortable-list, .merge_requests-sortable-list {
  .issuable-detail {
    display: block;
    margin-top: 7px;

    .issuable-number {
      color: rgba(0,0,0,0.44);
      margin-right: 5px;
    }
    .avatar {
      float: none;
    }
  }
}

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