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

66 lines
956 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;
}
}
2021-01-03 14:25:43 +05:30
.ci-status-icon-error,
2017-08-17 22:00:37 +05:30
.ci-status-icon-failed {
svg {
2018-11-20 20:47:30 +05:30
fill: $red-500;
2017-08-17 22:00:37 +05:30
}
}
.ci-status-icon-pending,
2020-03-13 15:44:24 +05:30
.ci-status-icon-waiting-for-resource,
2019-07-31 22:56:46 +05:30
.ci-status-icon-failed-with-warnings,
.ci-status-icon-success-with-warnings {
2017-08-17 22:00:37 +05:30
svg {
fill: $orange-500;
}
2019-12-21 20:55:43 +05:30
}
2017-08-17 22:00:37 +05:30
.ci-status-icon-running {
svg {
fill: $blue-400;
}
}
.ci-status-icon-canceled,
2021-03-11 19:13:27 +05:30
.ci-status-icon-disabled,
.ci-status-icon-scheduled,
.ci-status-icon-manual {
2017-08-17 22:00:37 +05:30
svg {
fill: $gl-text-color;
}
}
2021-03-11 19:13:27 +05:30
.ci-status-icon-preparing,
2017-08-17 22:00:37 +05:30
.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 {
2021-03-11 19:13:27 +05:30
fill: var(--gray-400, $gray-400);
2017-08-17 22:00:37 +05:30
}
}
.icon-link {
&:hover {
text-decoration: none;
}
}
2017-09-10 17:25:29 +05:30
.user-avatar-link {
text-decoration: none;
}
2019-02-15 15:39:39 +05:30
.circle-icon-container {
$border-size: 1px;
display: flex;
align-items: center;
justify-content: center;
2020-10-24 23:57:45 +05:30
color: $gray-500;
2019-02-15 15:39:39 +05:30
}