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

104 lines
1.5 KiB
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;
}
&.add-border {
@include borderless-status-icon($green-500);
}
}
.ci-status-icon-error,
.ci-status-icon-failed {
svg {
fill: $red-500;
}
&.add-border {
@include borderless-status-icon($red-500);
}
}
.ci-status-icon-pending,
.ci-status-icon-waiting-for-resource,
2019-04-12 12:39:10 +00:00
.ci-status-icon-failed-with-warnings,
.ci-status-icon-success-with-warnings {
svg {
fill: $orange-500;
}
&.add-border {
@include borderless-status-icon($orange-500);
}
}
.ci-status-icon-preparing {
svg {
fill: $gray-300;
}
&.add-border {
@include borderless-status-icon($gray-300);
}
}
.ci-status-icon-running {
svg {
fill: $blue-400;
}
&.add-border {
@include borderless-status-icon($blue-400);
}
}
.ci-status-icon-canceled,
.ci-status-icon-disabled {
svg {
fill: $gl-text-color;
}
&.add-border {
@include borderless-status-icon($gl-text-color);
}
}
.ci-status-icon-created,
.ci-status-icon-skipped,
.ci-status-icon-notfound {
svg {
fill: $gray-darkest;
}
&.add-border {
@include borderless-status-icon($gray-darkest);
}
}
2016-12-15 18:08:11 +00:00
2018-10-01 10:00:34 +00:00
.ci-status-icon-scheduled,
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;
}
.circle-icon-container {
$border-size: 1px;
display: flex;
align-items: center;
justify-content: center;
color: $gray-500;
}