issues.scss 1.72 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 11 12
    }

    .issue-labels {
      display: inline-block;
    }
randx's avatar
randx committed
13 14
  }
}
randx's avatar
randx committed
15

16
.check-all-holder {
17
  line-height: 36px;
18
  float: left;
19
  margin-right: 15px;
20 21
}

22 23
.issues_content {
  .title {
24 25
    height: 40px;
  }
26 27 28 29

  form {
    margin: 0;
  }
randx's avatar
randx committed
30 31
}

32 33
form.edit-issue {
  margin: 0;
34
}
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
35

36 37 38 39 40 41 42 43 44
ul.related-merge-requests > li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  .merge-request-id {
    flex-shrink: 0;
  }
}

Zeger-Jan van de Weg's avatar
Zeger-Jan van de Weg committed
45
.merge-requests-title, .related-branches-title {
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
  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
61 62 63
.merge-request,
.issue {
  &.today {
64
    background: #f3fff2;
65
    border-color: #e1e8d5;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
66 67 68
  }

  &.closed {
69
    background: $gray-light;
70
    border-color: #e5e5e5;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
71 72 73
  }

  &.merged {
74
    background: $gray-light;
75
    border-color: #e5e5e5;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
76 77
  }
}
78

79 80 81 82 83 84 85 86
.merge-request-ci-status {
  svg {
    margin-right: 4px;
    position: relative;
    top: 1px;
  }
}

87 88 89 90 91 92
@media (max-width: $screen-xs-max) {
  .issue-btn-group {
    width: 100%;

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

97 98
.issue-form .select2-container {
  width: 250px !important;
99
}
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116

.issues-footer {
  padding-top: $gl-padding;
  padding-bottom: 37px;
}

.issue-email-modal-btn {
  padding: 0;
  color: $gl-link-color;
  background-color: transparent;
  border: 0;
  outline: 0;

  &:hover {
    text-decoration: underline;
  }
}
117 118 119 120 121 122 123 124 125 126 127 128 129

.email-modal-input-group {
  margin-bottom: 10px;

  .form-control {
    background-color: $white-light;
  }

  .btn {
    background-color: $background-color;
    border: 1px solid $border-gray-light;
  }
}