summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/issue_box.scss
blob: 5d7fd36be165bf875def8164b6cdcffa1f3c5b0f (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
/**
 * Issue box for showing Open/Closed state:
 * Used for Issue#show page, MergeRequest#show page etc
 *
 */

.status-box {
  @include border-radius(3px);
  display: block;
  float: left;
  padding: 0 $gl-btn-padding;
  margin-top: 5px;
  margin-right: 10px;
  color: #FFF;
  font-size: $gl-font-size;
  line-height: 25px;

  &.status-box-closed {
    background-color: $gl-danger;
  }

  &.status-box-merged {
    background-color: $gl-primary;
  }

  &.status-box-open {
    background-color: $green-light;
  }

  &.status-box-expired {
    background: #cea61b;
  }
}