gitlab-org--gitlab-foss/app/assets/stylesheets/framework/icons.scss

67 lines
837 B
SCSS
Raw Normal View History

.ci-status-icon-success {
color: $gl-success;
svg {
fill: $gl-success;
}
}
.ci-status-icon-failed {
color: $gl-danger;
svg {
fill: $gl-danger;
}
}
.ci-status-icon-pending,
.ci-status-icon-failed_with_warnings,
2016-11-21 18:58:16 -05:00
.ci-status-icon-success_with_warnings {
color: $gl-warning;
svg {
fill: $gl-warning;
}
}
.ci-status-icon-running {
color: $blue-normal;
svg {
fill: $blue-normal;
}
}
.ci-status-icon-canceled,
.ci-status-icon-disabled,
.ci-status-icon-not-found {
2016-12-30 15:18:27 -05:00
color: $gl-text-color;
svg {
2016-12-30 15:18:27 -05:00
fill: $gl-text-color;
}
}
.ci-status-icon-created,
.ci-status-icon-skipped {
color: $gray-darkest;
svg {
fill: $gray-darkest;
}
}
2016-12-15 13:08:11 -05:00
.ci-status-icon-manual {
color: $gl-text-color;
svg {
fill: $gl-text-color;
2016-12-15 13:08:11 -05:00
}
}
2017-01-30 13:18:52 -05:00
.icon-link {
&:hover {
text-decoration: none;
}
}