debian-mirror-gitlab/app/assets/stylesheets/framework/icons.scss

58 lines
735 B
SCSS
Raw Normal View History

2017-08-17 22:00:37 +05:30
.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,
2018-03-17 18:26:18 +05:30
.ci-status-icon-disabled {
2017-08-17 22:00:37 +05:30
svg {
fill: $gl-text-color;
}
}
.ci-status-icon-created,
2018-03-17 18:26:18 +05:30
.ci-status-icon-skipped,
.ci-status-icon-notfound {
2017-08-17 22:00:37 +05:30
svg {
fill: $gray-darkest;
}
}
.ci-status-icon-manual {
svg {
fill: $gl-text-color;
}
}
.icon-link {
&:hover {
text-decoration: none;
}
}
2017-09-10 17:25:29 +05:30
.user-avatar-link {
text-decoration: none;
}