summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/status.scss
blob: a59bb31bdcb777770466f354d60eb1ad4470f9c6 (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
72
73
74
75
.ci-status {
  padding: 2px 7px 4px;
  border: 1px solid $gray-darker;
  white-space: nowrap;
  border-radius: 4px;

  &:hover,
  &:focus {
    text-decoration: none;
  }

  svg {
    height: 13px;
    width: 13px;
    position: relative;
    top: 2px;
    overflow: visible;
  }

  &.ci-failed {
    @include status-color($red-100, $red-500, $red-600);
  }

  &.ci-success {
    @include green-status-color;
  }

  &.ci-canceled,
  &.ci-disabled,
  &.ci-scheduled,
  &.ci-manual {
    color: $gl-text-color;
    border-color: $gl-text-color;

    &:not(span):hover {
      background-color: rgba($gl-text-color, 0.07);
    }
  }

  &.ci-pending,
  &.ci-failed_with_warnings,
  &.ci-success_with_warnings {
    @include status-color($orange-100, $orange-500, $orange-700);
  }

  &.ci-info,
  &.ci-preparing,
  &.ci-running {
    @include status-color($blue-100, $blue-500, $blue-600);
  }

  &.ci-created,
  &.ci-skipped {
    color: $gl-text-color-secondary;
    border-color: $gl-text-color-secondary;

    &:not(span):hover {
      background-color: rgba($gl-text-color-secondary, 0.07);
    }
  }
}

.d-block.d-sm-none-inline {
  .ci-status-link {
    position: relative;
    top: 2px;
    left: 5px;
  }
}

.ci-status-link {
  svg {
    overflow: visible;
  }
}