2017-06-16 08:00:28 -04:00
|
|
|
.ci-status {
|
|
|
|
padding: 2px 7px 4px;
|
|
|
|
border: 1px solid $gray-darker;
|
|
|
|
white-space: nowrap;
|
|
|
|
border-radius: 4px;
|
2016-11-21 18:14:40 -05:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2016-11-21 18:14:40 -05:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
svg {
|
|
|
|
height: 13px;
|
|
|
|
width: 13px;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
overflow: visible;
|
|
|
|
}
|
2015-09-24 05:21:10 -04:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
&.ci-failed {
|
2017-09-22 20:06:18 -04:00
|
|
|
@include status-color($red-100, $red-500, $red-600);
|
2017-06-16 08:00:28 -04:00
|
|
|
}
|
2016-11-21 18:14:40 -05:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
&.ci-success {
|
2017-07-13 04:53:19 -04:00
|
|
|
@include green-status-color;
|
2017-06-16 08:00:28 -04:00
|
|
|
}
|
2016-11-21 18:14:40 -05:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
&.ci-canceled,
|
|
|
|
&.ci-disabled,
|
2018-09-28 05:52:30 -04:00
|
|
|
&.ci-scheduled,
|
2017-06-16 08:00:28 -04:00
|
|
|
&.ci-manual {
|
|
|
|
color: $gl-text-color;
|
|
|
|
border-color: $gl-text-color;
|
2016-03-25 10:55:08 -04:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
&:not(span):hover {
|
|
|
|
background-color: rgba($gl-text-color, .07);
|
2016-03-25 10:55:08 -04:00
|
|
|
}
|
2017-06-16 08:00:28 -04:00
|
|
|
}
|
2016-07-12 16:58:26 -04:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
&.ci-pending,
|
|
|
|
&.ci-failed_with_warnings,
|
|
|
|
&.ci-success_with_warnings {
|
2017-09-22 20:06:18 -04:00
|
|
|
@include status-color($orange-100, $orange-500, $orange-700);
|
2017-06-16 08:00:28 -04:00
|
|
|
}
|
2016-07-19 09:47:26 -04:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
&.ci-info,
|
|
|
|
&.ci-running {
|
2017-09-22 20:06:18 -04:00
|
|
|
@include status-color($blue-100, $blue-500, $blue-600);
|
2017-06-16 08:00:28 -04:00
|
|
|
}
|
2016-08-30 12:55:57 -04:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
&.ci-created,
|
|
|
|
&.ci-skipped {
|
|
|
|
color: $gl-text-color-secondary;
|
|
|
|
border-color: $gl-text-color-secondary;
|
2016-11-21 18:14:40 -05:00
|
|
|
|
2017-06-16 08:00:28 -04:00
|
|
|
&:not(span):hover {
|
|
|
|
background-color: rgba($gl-text-color-secondary, .07);
|
2016-08-30 12:55:57 -04:00
|
|
|
}
|
2015-09-24 05:21:10 -04:00
|
|
|
}
|
2015-12-12 13:18:51 -05:00
|
|
|
}
|
2016-07-21 11:31:05 -04:00
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
.d-block.d-sm-none-inline {
|
2016-07-21 11:31:05 -04:00
|
|
|
.ci-status-link {
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
left: 5px;
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 11:18:19 -05:00
|
|
|
|
|
|
|
.ci-status-link {
|
|
|
|
svg {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
}
|