summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/icons.scss
blob: 226bd2ead31e5f20b6e9054119cc5d74f9f393d8 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.ci-status-icon-success {
  color: $gl-success;

  svg {
    fill: $gl-success;
  }
}

.ci-status-icon-failed {
  color: $gl-danger;

  svg {
    fill: $gl-danger;
  }
}

.ci-status-icon-pending,
.ci-status-icon-success_with_warnings {
  color: $gl-warning;

  svg {
    fill: $gl-warning;
  }
}

.ci-status-icon-running {
  color: $blue-normal;

  svg {
    fill: $blue-normal;
  }
}

.ci-status-icon-canceled,
.ci-status-icon-disabled,
.ci-status-icon-not-found {
  color: $gl-gray;

  svg {
    fill: $gl-gray;
  }
}

.ci-status-icon-created,
.ci-status-icon-skipped {
  color: $gray-darkest;

  svg {
    fill: $gray-darkest;
  }
}