summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/status.scss
blob: 4a2842471434734b0ff6fb6b3ab053734195adc0 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
.container-fluid {
  .ci-status {
    padding: 2px 7px 4px;
    margin-right: 10px;
    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,
    &.ci-failed_with_warnings {
      color: $red-500;
      border-color: $red-500;

      &:not(span):hover {
        background-color: $red-50;
        color: $red-600;
        border-color: $red-600;

        svg {
          fill: $red-600;
        }
      }

      svg {
        fill: $red-500;
      }
    }

    &.ci-success,
    &.ci-success_with_warnings {
      color: $green-600;
      border-color: $green-500;

      &:not(span):hover {
        background-color: $green-50;
        color: $green-700;
        border-color: $green-600;

        svg {
          fill: $green-600;
        }
      }

      svg {
        fill: $green-500;
      }
    }

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

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

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

    &.ci-pending {
      color: $orange-600;
      border-color: $orange-500;

      &:not(span):hover {
        background-color: $orange-50;
        color: $orange-700;
        border-color: $orange-600;

        svg {
          fill: $orange-600;
        }
      }

      svg {
        fill: $orange-500;
      }
    }

    &.ci-info,
    &.ci-running {
      color: $blue-500;
      border-color: $blue-500;

      &:not(span):hover {
        background-color: $blue-50;
        color: $blue-600;
        border-color: $blue-600;

        svg {
          fill: $blue-600;
        }
      }

      svg {
        fill: $blue-500;
      }
    }

    &.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, .07);
      }

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

    &.ci-manual {
      color: $gl-text-color;
      border-color: $gl-text-color;

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

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

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

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