BigW Consortium Gitlab

issue_box.scss 609 Bytes
Newer Older
1
/**
2
 * Issue box for showing Open/Closed state:
3 4 5 6
 * Used for Issue#show page, MergeRequest#show page etc
 *
 */

7
.status-box {
Andriy Dyadyura committed
8
  @include border-radius(3px);
9

10 11
  display: block;
  float: left;
12
  padding: 0 $gl-btn-padding;
13
  font-weight: normal;
14 15
  margin-right: 10px;
  font-size: $gl-font-size;
16

17
  &.status-box-closed {
18
    background-color: $gl-danger;
19
    color: #FFF;
Dmitriy Zaporozhets committed
20 21
  }

22
  &.status-box-merged {
23
    background-color: $gl-primary;
24
    color: #FFF;
Dmitriy Zaporozhets committed
25 26
  }

27
  &.status-box-open {
Andriy Dyadyura committed
28
    background-color: $green-light;
29
    color: #FFF;
Dmitriy Zaporozhets committed
30 31
  }

32
  &.status-box-expired {
33 34
    background: #cea61b;
    color: #FFF;
Dmitriy Zaporozhets committed
35
  }
36
}