Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue_box.scss « generic « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9558f241b7c7e96c3f93547dc4571ed38e3cb386 (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
/**
 * Issue box for showing Open/Closed state:
 * Used for Issue#show page, MergeRequest#show page etc
 *
 */

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

  &.issue-box-closed {
    background-color: $gl-danger;
    color: #FFF;
  }

  &.issue-box-merged {
    background-color: $gl-primary;
    color: #FFF;
  }

  &.issue-box-open {
    background-color: $gl-success;
    color: #FFF;
  }

  &.issue-box-expired {
    background: #cea61b;
    color: #FFF;
  }
}