summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/icons.scss
blob: ef864e8f6a9da32666484b032f1078912272e9cd (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
61
62
63
64
65
66
67
68
69
70
71
.ci-status-icon-success,
.ci-status-icon-passed {
  color: $green-500;

  svg {
    fill: $green-500;
  }
}

.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: $orange-500;

  svg {
    fill: $orange-500;
  }
}

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

  svg {
    fill: $blue-400;
  }
}

.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;
  }
}

.icon-link {
  &:hover {
    text-decoration: none;
  }
}

.user-avatar-link {
  text-decoration: none;
}