issues.scss 1.31 KB
Newer Older
1
.issues-list {
2
  .issue {
3
    padding: 10px $gl-padding;
4
    position: relative;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
5

6
    .title {
7
      margin-bottom: 2px;
8 9 10
    }

    .issue-check {
11
      float: left;
randx's avatar
randx committed
12
      padding-right: 8px;
13
      margin-bottom: 10px;
randx's avatar
randx committed
14 15 16
      min-width: 15px;
    }

17 18 19 20
    .issue-labels {
      display: inline-block;
    }

21
    .issue-no-comments {
Stefan Tatschner's avatar
Stefan Tatschner committed
22
      opacity: 0.5;
randx's avatar
randx committed
23 24 25
    }
  }
}
randx's avatar
randx committed
26

27
.check-all-holder {
28
  line-height: 36px;
29
  float: left;
30
  margin-right: 15px;
31 32
}

33 34
.issues_content {
  .title {
35 36
    height: 40px;
  }
37 38 39 40

  form {
    margin: 0;
  }
randx's avatar
randx committed
41 42
}

43 44 45 46
.issue-search-form {
  margin: 0;
  height: 24px;
}
47

48 49
form.edit-issue {
  margin: 0;
50
}
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
51

Zeger-Jan van de Weg's avatar
Zeger-Jan van de Weg committed
52
.merge-requests-title, .related-branches-title {
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
  font-size: 16px;
  font-weight: 600;
}

.merge-request-id {
  display: inline-block;
  width: 3em;
}

.merge-request-status {
  color: $gl-gray;
  font-size: 15px;
  font-weight: bold;
}

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
68 69 70
.merge-request,
.issue {
  &.today {
71 72
    background: #efe;
    border-color: #cec;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
73 74 75
  }

  &.closed {
76 77
    background: #f9f9f9;
    border-color: #e5e5e5;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
78 79 80
  }

  &.merged {
81 82
    background: #f9f9f9;
    border-color: #e5e5e5;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
83 84
  }
}
85 86 87 88 89 90 91

@media (max-width: $screen-xs-max) {
  .issue-btn-group {
    width: 100%;

    .btn {
      width: 100%;
92 93
    }
  }
94
}
95

96 97
.issue-form .select2-container {
  width: 250px !important;
98
}
99 100

.issue-closed-by-widget {
101
  color: $gl-text-color;
102
  margin-left: 52px;
103
}