BigW Consortium Gitlab

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

.issue-box {
8
  display: inline-block;
9 10 11
  padding: 7px 13px;
  font-weight: normal;
  margin-right: 5px;
12

Dmitriy Zaporozhets committed
13
  &.issue-box-closed {
14
    background-color: $gl-danger;
15
    color: #FFF;
Dmitriy Zaporozhets committed
16 17 18
  }

  &.issue-box-merged {
19
    background-color: $gl-primary;
20
    color: #FFF;
Dmitriy Zaporozhets committed
21 22 23
  }

  &.issue-box-open {
24
    background-color: $gl-success;
25
    color: #FFF;
Dmitriy Zaporozhets committed
26 27 28
  }

  &.issue-box-expired {
29 30
    background: #cea61b;
    color: #FFF;
Dmitriy Zaporozhets committed
31
  }
32
}