summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/status.scss
blob: 0ee7ceecae5b9073bd85606452d8ae043dda3532 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.container-fluid {
  .ci-status {
    padding: 2px 7px;
    margin-right: 10px;
    border: 1px solid #eee;
    white-space: nowrap;
    @include border-radius(4px);

    &:hover {
      text-decoration: none;
    }

    &.ci-failed {
      color: $gl-danger;
      border-color: $gl-danger;
    }

    &.ci-success,
    &.ci-success_with_warnings {
      color: $gl-success;
      border-color: $gl-success;
    }

    &.ci-info {
      color: $gl-info;
      border-color: $gl-info;
    }

    &.ci-canceled,
    &.ci-skipped,
    &.ci-disabled {
      color: $gl-gray;
      border-color: $gl-gray;
    }

    &.ci-pending {
      color: $gl-warning;
      border-color: $gl-warning;
    }

    &.ci-running {
      color: $blue-normal;
      border-color: $blue-normal;
    }

    &.ci-created {
      color: $table-text-gray;
      border-color: $table-text-gray;

      svg {
        fill: $table-text-gray;
      }
    }

    svg {
      height: 13px;
      width: 13px;
      position: relative;
      top: 1px;
      margin: 0 3px;
      overflow: visible;
    }
  }

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

  .ci-status-icon-pending,
  .ci-status-icon-success_with_warning {
    color: $gl-warning;
  }
  
  .ci-status-icon-running {
    color: $blue-normal;
  }
  .ci-status-icon-canceled,
  .ci-status-icon-disabled,
  .ci-status-icon-not-found,
  .ci-status-icon-skipped {
    color: $gl-gray;
  }
}

.visible-xs-inline {
  .ci-status-link {
    position: relative;
    top: 2px;
    left: 5px;
  }
}