issues.scss 1.86 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
    .issue-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

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
.merge-requests-title {
  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 71 72 73 74 75
.merge-request,
.issue {
  &.today {
    background: #EFE;
    border-color: #CEC;
  }

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

  &.merged {
81
    background: #F9F9F9;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
82 83 84
    border-color: #E5E5E5;
  }
}
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

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

    .btn-group {
      width: 100%;

      ul {
        width: 100%;
        text-align: center;
      }
    }

    .btn {
      width: 100%;

      &:first-child:not(:last-child) {
104

105 106 107
      }

      &:not(:first-child):not(:last-child) {
108
        margin-top: 10px;
109 110 111
      }

      &:last-child:not(:first-child) {
112
        margin-top: 10px;
113 114 115
      }
    }
  }
116 117 118 119 120 121 122 123 124 125

  .issue {
    &:hover  .issue-actions {
      display: none !important;
    }

    .issue-updated-at {
      display: none;
    }
  }
126
}
127

128 129
.issue-form .select2-container {
  width: 250px !important;
130
}
131 132

.issue-closed-by-widget {
133
  color: $secondary-text;
134
  margin-left: 52px;
135
}
136 137

.editor-details {
Jacob Schatz's avatar
Jacob Schatz committed
138 139
  display: block;
  
140 141 142 143
  @media (min-width: $screen-sm-min) {
    display: inline-block;
  }
}