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

58 lines
735 B
SCSS
Raw Normal View History

2017-05-09 04:15:34 +00:00
.ci-status-icon-success,
.ci-status-icon-passed {
svg {
fill: $green-500;
}
}
.ci-status-icon-failed {
svg {
fill: $gl-danger;
}
}
.ci-status-icon-pending,
.ci-status-icon-failed_with_warnings,
2016-11-21 23:58:16 +00:00
.ci-status-icon-success_with_warnings {
svg {
fill: $orange-500;
}
}
.ci-status-icon-running {
svg {
fill: $blue-400;
}
}
.ci-status-icon-canceled,
.ci-status-icon-disabled {
svg {
fill: $gl-text-color;
}
}
.ci-status-icon-created,
.ci-status-icon-skipped,
.ci-status-icon-notfound {
svg {
fill: $gray-darkest;
}
}
2016-12-15 18:08:11 +00:00
.ci-status-icon-manual {
svg {
fill: $gl-text-color;
}
2016-12-15 18:08:11 +00:00
}
2017-01-30 18:18:52 +00:00
.icon-link {
&:hover {
text-decoration: none;
}
}
2017-04-15 23:38:07 +00:00
.user-avatar-link {
text-decoration: none;
}