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

issue_box.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08dcb563dce87637a66017d2ab24cb984f7b08bf (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
34
35
36
/**
 * 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;
  font-weight: normal;
  margin-right: 10px;
  font-size: $gl-font-size;

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

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

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

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