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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

133 lines
2 KiB
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;
}
2022-07-16 23:28:13 +05:30
&.interactive {
&:hover {
background: $green-500;
svg {
--svg-status-bg: #{$green-100};
box-shadow: 0 0 0 1px $green-500;
}
}
}
2017-08-17 22:00:37 +05:30
}
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
}
2022-07-16 23:28:13 +05:30
&.interactive {
&:hover {
background: $red-500;
svg {
--svg-status-bg: #{$red-100};
box-shadow: 0 0 0 1px $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;
}
2022-07-16 23:28:13 +05:30
&.interactive {
&:hover {
background: $orange-500;
svg {
--svg-status-bg: #{$orange-100};
box-shadow: 0 0 0 1px $orange-500;
}
}
}
2019-12-21 20:55:43 +05:30
}
2017-08-17 22:00:37 +05:30
.ci-status-icon-running {
svg {
2022-07-16 23:28:13 +05:30
fill: $blue-500;
}
&.interactive {
&:hover {
background: $blue-500;
svg {
--svg-status-bg: #{$blue-100};
box-shadow: 0 0 0 1px $blue-500;
}
}
2017-08-17 22:00:37 +05:30
}
}
.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 {
2022-07-16 23:28:13 +05:30
fill: $gray-900;
}
&.interactive {
&:hover {
background: $gray-900;
svg {
--svg-status-bg: #{$gray-100};
box-shadow: 0 0 0 1px $gray-900;
}
}
2017-08-17 22:00:37 +05:30
}
}
2021-11-11 11:23:49 +05:30
.ci-status-icon-notification,
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 {
2022-07-16 23:28:13 +05:30
fill: $gray-500;
}
&.interactive {
&:hover {
background: $gray-500;
svg {
--svg-status-bg: #{$gray-100};
box-shadow: 0 0 0 1px $gray-500;
}
}
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
}