summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/icons.scss
blob: 868f28cd3564f65248ce6877c7ce82a370d84f14 (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
52
53
54
55
56
57
58
59
60
.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-failed_with_warnings,
.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-text-color;

  svg {
    fill: $gl-text-color;
  }
}

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

  svg {
    fill: $gray-darkest;
  }
}

.ci-status-icon-manual {
  color: $gl-text-color;

  svg {
    fill: $gl-text-color;
  }
}