gitlab-org--gitlab-foss/app/assets/stylesheets/framework/icons.scss
Simon Knox 5d3b6ed861 fix icon colors in commit list
this is not a great way to do this. But using currentColor for these
means we are competing with this selector:
 ul.content-list li a
2017-11-29 08:53:26 +11:00

57 lines
736 B
SCSS

.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,
.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,
.ci-status-icon-not-found {
svg {
fill: $gl-text-color;
}
}
.ci-status-icon-created,
.ci-status-icon-skipped {
svg {
fill: $gray-darkest;
}
}
.ci-status-icon-manual {
svg {
fill: $gl-text-color;
}
}
.icon-link {
&:hover {
text-decoration: none;
}
}
.user-avatar-link {
text-decoration: none;
}